tangled
alpha
login
or
join now
foxgirl.engineering
/
gleam2nix
3
fork
atom
tools for building gleam projects with nix
3
fork
atom
overview
issues
pulls
pipelines
overlay: remove redundant inherit
foxgirl.engineering
5 months ago
5739320c
36ab1a0e
verified
This commit was signed with the committer's
known signature
.
foxgirl.engineering
SSH Key Fingerprint:
SHA256:zgspAKSFKA6vB30vPBY6QSa/osCDgrr8YASW+mNz13M=
+2
-6
1 changed file
expand all
collapse all
unified
split
nix
overlay.nix
+2
-6
nix/overlay.nix
···
13
13
{
14
14
gleam2nix = final.callPackage ./gleam2nix.nix { inherit rust-toolchain; };
15
15
16
16
-
buildGleam = final.callPackage ./build-gleam.nix {
17
17
-
inherit (final) gleam2nix;
18
18
-
};
19
19
-
buildGleamApplication = final.callPackage ./build-gleam-application.nix {
20
20
-
inherit (final) buildGleam gleam2nix;
21
21
-
};
16
16
+
buildGleam = final.callPackage ./build-gleam.nix { };
17
17
+
buildGleamApplication = final.callPackage ./build-gleam-application.nix { };
22
18
}