2023-11-28 23:58:48 +00:00
|
|
|
{ stdenv
|
|
|
|
, file
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, autoreconfHook
|
|
|
|
, bison
|
|
|
|
, flex
|
|
|
|
, pkg-config
|
|
|
|
, doxygen
|
|
|
|
, graphviz
|
|
|
|
, mscgen
|
|
|
|
, asciidoc
|
|
|
|
, sourceHighlight
|
|
|
|
, pythonSupport ? false
|
|
|
|
, swig ? null
|
|
|
|
, python ? null
|
|
|
|
}:
|
2010-12-06 12:04:36 +00:00
|
|
|
|
2018-05-17 11:57:32 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libnl";
|
2024-07-30 06:04:13 +00:00
|
|
|
version = "3.10.0";
|
2010-12-06 12:04:36 +00:00
|
|
|
|
2015-06-03 00:45:26 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "libnl";
|
|
|
|
owner = "thom311";
|
2017-06-20 05:03:53 +00:00
|
|
|
rev = "libnl${lib.replaceStrings ["."] ["_"] version}";
|
2024-07-30 06:04:13 +00:00
|
|
|
hash = "sha256-QwDn7S9lyU+/Pc9daqy1qDZFU03dUQF5PDqFEn03WWc=";
|
2010-12-06 12:04:36 +00:00
|
|
|
};
|
|
|
|
|
2018-05-17 12:02:27 +00:00
|
|
|
outputs = [ "bin" "dev" "out" "man" ] ++ lib.optional pythonSupport "py";
|
2015-10-18 18:49:41 +00:00
|
|
|
|
2017-10-29 19:21:06 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2023-11-28 23:58:48 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
bison
|
|
|
|
flex
|
|
|
|
pkg-config
|
|
|
|
file
|
|
|
|
doxygen
|
|
|
|
graphviz
|
|
|
|
mscgen
|
|
|
|
asciidoc
|
|
|
|
sourceHighlight
|
|
|
|
] ++ lib.optional pythonSupport swig;
|
2018-05-17 12:02:27 +00:00
|
|
|
|
|
|
|
postBuild = lib.optionalString (pythonSupport) ''
|
|
|
|
cd python
|
2023-11-06 01:38:24 +00:00
|
|
|
${python.pythonOnBuildForHost.interpreter} setup.py install --prefix=../pythonlib
|
2018-05-17 12:02:27 +00:00
|
|
|
cd -
|
|
|
|
'';
|
|
|
|
|
|
|
|
postFixup = lib.optionalString pythonSupport ''
|
|
|
|
mv "pythonlib/" "$py"
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
inherit pythonSupport;
|
|
|
|
};
|
2010-12-06 12:04:36 +00:00
|
|
|
|
2017-06-20 05:03:53 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
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;
|
2010-12-06 12:04:36 +00:00
|
|
|
};
|
|
|
|
}
|