tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libhandy_0: passthru outputBin as `bin`
Peder Bergebakken Sundt
8 months ago
e576c768
2fbeffb3
+5
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libhandy
0.x.nix
+5
-4
pkgs/development/libraries/libhandy/0.x.nix
···
18
18
hicolor-icon-theme,
19
19
}:
20
20
21
21
-
stdenv.mkDerivation rec {
21
21
+
stdenv.mkDerivation (finalAttrs: {
22
22
pname = "libhandy";
23
23
version = "0.0.13";
24
24
···
28
28
"devdoc"
29
29
];
30
30
outputBin = "dev";
31
31
+
passthru.bin = finalAttrs.finalPackage.${finalAttrs.outputBin}; # fixes lib.getExe
31
32
32
33
src = fetchFromGitLab {
33
34
domain = "source.puri.sm";
34
35
owner = "Librem5";
35
35
-
repo = pname;
36
36
-
rev = "v${version}";
36
36
+
repo = "libhandy";
37
37
+
rev = "v${finalAttrs.version}";
37
38
sha256 = "1y23k623sjkldfrdiwfarpchg5mg58smcy1pkgnwfwca15wm1ra5";
38
39
};
39
40
···
83
84
maintainers = [ ];
84
85
platforms = platforms.unix;
85
86
};
86
86
-
}
87
87
+
})