libnet: modernize & make bashless (#467210)

This commit is contained in:
Sandro
2025-12-05 02:38:04 +00:00
committed by GitHub
+13
View File
@@ -5,6 +5,7 @@
autoconf,
automake,
libtool,
bash,
}:
stdenv.mkDerivation rec {
@@ -18,12 +19,24 @@ stdenv.mkDerivation rec {
hash = "sha256-P3LaDMMNPyEnA8nO1Bm7H0mW/hVBr0cFdg+p2JmWcGI=";
};
strictDeps = true;
enableParallelBuilding = true;
outputs = [
"out"
"lib"
];
nativeBuildInputs = [
autoconf
automake
libtool
];
buildInputs = [
bash
];
preConfigure = "./autogen.sh";
meta = with lib; {