12 stdenv.mkDerivation (finalAttrs: {
16 enableParallelBuilding = true;
18 src = fetchFromGitHub {
21 rev = "refs/tags/libdnet-${finalAttrs.version}";
22 hash = "sha256-oPlBQB9e8vGJ/rVydMqsZqdInhrpm2sNWkDl9JkkXCI=";
31 buildInputs = [ libtool ];
33 # .so endings are missing (quick and dirty fix)
35 for i in $out/lib/*; do
41 description = "Provides a simplified, portable interface to several low-level networking routines";
42 homepage = "https://github.com/dugsong/libdnet";
43 license = lib.licenses.bsd3;
44 maintainers = [ lib.maintainers.marcweber ];
45 platforms = lib.platforms.linux;