1 {lib, stdenv, fetchurl, automake, autoconf, libtool}:
3 stdenv.mkDerivation rec {
7 enableParallelBuilding = true;
10 url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/libdnet/libdnet-${version}.tgz";
11 sha256 = "09mhbr8x66ykhf5581a5zjpplpjxibqzgkkpx689kybwg0wk1cw3";
14 nativeBuildInputs = [ automake autoconf ];
15 buildInputs = [ libtool ];
17 # .so endings are missing (quick and dirty fix)
19 for i in $out/lib/*; do
25 description = "Provides a simplified, portable interface to several low-level networking routines";
26 homepage = "https://github.com/dugsong/libdnet";
27 license = lib.licenses.bsd3;
28 maintainers = [lib.maintainers.marcweber];
29 platforms = lib.platforms.linux;