nixpkgs/pkgs/os-specific/linux/libnl/default.nix

51 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, file, lib, fetchFromGitHub, fetchpatch, autoreconfHook, bison, flex, pkgconfig
, pythonSupport ? true, swig ? null, python}:
2018-05-17 11:57:32 +00:00
stdenv.mkDerivation rec {
name = "libnl-${version}";
2018-05-17 11:57:32 +00:00
version = "3.4.0";
src = fetchFromGitHub {
repo = "libnl";
owner = "thom311";
2017-06-20 05:03:53 +00:00
rev = "libnl${lib.replaceStrings ["."] ["_"] version}";
2018-05-17 11:57:32 +00:00
sha256 = "1bqf1f5glwf285sa98k5pkj9gg79lliixk1jk85j63v5510fbagp";
};
outputs = [ "bin" "dev" "out" "man" ] ++ lib.optional pythonSupport "py";
2015-10-18 18:49:41 +00:00
patches = stdenv.lib.optional stdenv.hostPlatform.isMusl
(fetchpatch {
url = "https://raw.githubusercontent.com/gentoo/musl/48d2a28710ae40877fd3e178ead1fb1bb0baa62c/dev-libs/libnl/files/libnl-3.3.0_rc1-musl.patch";
sha256 = "0dd7xxikib201i99k2if066hh7gwf2i4ffckrjplq6lr206jn00r";
});
enableParallelBuilding = true;
nativeBuildInputs = [ autoreconfHook bison flex pkgconfig file ]
++ lib.optional pythonSupport swig;
postBuild = lib.optionalString (pythonSupport) ''
cd python
${python}/bin/python setup.py install --prefix=../pythonlib
cd -
'';
postFixup = lib.optionalString pythonSupport ''
mv "pythonlib/" "$py"
'';
passthru = {
inherit pythonSupport;
};
2017-06-20 05:03:53 +00:00
meta = with lib; {
inherit version;
homepage = http://www.infradead.org/~tgr/libnl/;
2017-06-20 05:03:53 +00:00
description = "Linux Netlink interface library suite";
license = licenses.lgpl21;
maintainers = with maintainers; [ fpletz ];
platforms = platforms.linux;
};
}