Skip to content

Commit cd564c5

Browse files
authoredMar 18, 2025
ynetd.hardened: add pow-solver binary (#390843)
2 parents 4e4ce2f + 3bd9ca0 commit cd564c5

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
 

‎pkgs/by-name/yn/ynetd/hardened.nix

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
lib,
3+
openssl,
34
stdenv,
45
fetchurl,
56
}:
@@ -12,9 +13,17 @@ stdenv.mkDerivation (finalAttrs: {
1213
hash = "sha256-hUEZZEulmaV3KfKOqE1wl7y4SRUn2/HoOjVDabk5+YA=";
1314
};
1415

16+
buildInputs = [ openssl ];
17+
18+
makeFlags = [
19+
"ynetd"
20+
"pow-solver"
21+
];
22+
1523
installPhase = ''
1624
runHook preInstall
1725
install -Dm755 ynetd $out/bin/ynetd
26+
install -Dm755 pow-solver $out/bin/pow-solver
1827
runHook postInstall
1928
'';
2029

0 commit comments

Comments
 (0)
Failed to load comments.