From c87a2ea7134713baaa97949716097ffe05e6e5d3 Mon Sep 17 00:00:00 2001 From: "Yury G. Kudryashov" Date: Mon, 6 Dec 2010 12:04:36 +0000 Subject: Add Netlink library svn path=/nixpkgs/trunk/; revision=24996 --- pkgs/os-specific/linux/libnl/default.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pkgs/os-specific/linux/libnl/default.nix (limited to 'pkgs/os-specific/linux/libnl') diff --git a/pkgs/os-specific/linux/libnl/default.nix b/pkgs/os-specific/linux/libnl/default.nix new file mode 100644 index 00000000000..cbe938d2ee4 --- /dev/null +++ b/pkgs/os-specific/linux/libnl/default.nix @@ -0,0 +1,20 @@ +{stdenv, fetchurl, bison, flex}: + +stdenv.mkDerivation rec { + name = "libnl-2.0"; + + src = fetchurl { + url = "${meta.homepage}files/${name}.tar.gz"; + sha256 = "173sr25xpsakdvjcg62790v6kwcgxj5r0js2lx6hg89w7n8dqh2s"; + }; + + buildInputs = [ bison flex ]; + postConfigure = "type -tp flex"; + + meta = { + homepage = "http://www.infradead.org/~tgr/libnl/"; + description = "Linux NetLink interface library"; + maintainers = [ stdenv.lib.maintainers.urkud ]; + platforms = stdenv.lib.platforms.linux; + }; +} -- cgit 1.4.1