nixpkgs/pkgs/by-name/li/libnl/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
1.3 KiB
Nix
Raw Normal View History

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
}:
2018-05-17 11:57:32 +00:00
stdenv.mkDerivation rec {
pname = "libnl";
2024-07-30 06:04:13 +00:00
version = "3.10.0";
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=";
};
outputs = [ "bin" "dev" "out" "man" ] ++ lib.optional pythonSupport "py";
2015-10-18 18:49:41 +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;
postBuild = lib.optionalString (pythonSupport) ''
cd python
${python.pythonOnBuildForHost.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;
};
}