Adding libnl 3.2.19 to use instead of the latest with ntrack

ntrack has a bug about fresher libnl compatilbility. There are no
updates since September.
This commit is contained in:
Michael Raskin
2013-12-02 22:47:52 +04:00
parent 87fd8c1f8f
commit 8da629a3b9
2 changed files with 24 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
{stdenv, fetchurl, bison, flex}:
stdenv.mkDerivation rec {
name = "libnl-3.2.19";
src = fetchurl {
url = "${meta.homepage}files/${name}.tar.gz";
sha256 = "12q97cw680hg4rylyd8j3d7azwwia4ndsv3kybd1ajp8hjni39ip";
};
buildInputs = [ bison flex ];
meta = {
homepage = "http://www.infradead.org/~tgr/libnl/";
description = "Linux NetLink interface library";
maintainers = [ stdenv.lib.maintainers.urkud ];
platforms = stdenv.lib.platforms.linux;
};
}