Unverified Commit 7905606c authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

libnet: modernize & make bashless (#467210)

parents ae53b3d2 2cc4c0f3
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -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; {