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

44 lines
1.1 KiB
Nix
Raw Permalink Normal View History

{ stdenv, file, lib, fetchFromGitHub, autoreconfHook, bison, flex, pkg-config
2021-03-25 14:57:26 +00:00
, pythonSupport ? false, swig ? null, python ? null}:
2018-05-17 11:57:32 +00:00
stdenv.mkDerivation rec {
pname = "libnl";
version = "3.5.0";
src = fetchFromGitHub {
repo = "libnl";
owner = "thom311";
2017-06-20 05:03:53 +00:00
rev = "libnl${lib.replaceStrings ["."] ["_"] version}";
sha256 = "1ak30jcx52gl5yz1691qq0b76ldbcp2z6vsvdr2mrrwqiplqbcs2";
};
outputs = [ "bin" "dev" "out" "man" ] ++ lib.optional pythonSupport "py";
2015-10-18 18:49:41 +00:00
enableParallelBuilding = true;
nativeBuildInputs = [ autoreconfHook bison flex pkg-config file ]
++ lib.optional pythonSupport swig;
postBuild = lib.optionalString (pythonSupport) ''
cd python
2021-03-25 14:57:26 +00:00
${python.interpreter} 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; {
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;
};
}