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
hicolor-icon-theme,
19
}:
20
21
-
stdenv.mkDerivation rec {
22
pname = "libhandy";
23
version = "0.0.13";
24
···
28
"devdoc"
29
];
30
outputBin = "dev";
0
31
32
src = fetchFromGitLab {
33
domain = "source.puri.sm";
34
owner = "Librem5";
35
-
repo = pname;
36
-
rev = "v${version}";
37
sha256 = "1y23k623sjkldfrdiwfarpchg5mg58smcy1pkgnwfwca15wm1ra5";
38
};
39
···
83
maintainers = [ ];
84
platforms = platforms.unix;
85
};
86
-
}
···
18
hicolor-icon-theme,
19
}:
20
21
+
stdenv.mkDerivation (finalAttrs: {
22
pname = "libhandy";
23
version = "0.0.13";
24
···
28
"devdoc"
29
];
30
outputBin = "dev";
31
+
passthru.bin = finalAttrs.finalPackage.${finalAttrs.outputBin}; # fixes lib.getExe
32
33
src = fetchFromGitLab {
34
domain = "source.puri.sm";
35
owner = "Librem5";
36
+
repo = "libhandy";
37
+
rev = "v${finalAttrs.version}";
38
sha256 = "1y23k623sjkldfrdiwfarpchg5mg58smcy1pkgnwfwca15wm1ra5";
39
};
40
···
84
maintainers = [ ];
85
platforms = platforms.unix;
86
};
87
+
})