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

27 lines
736 B
Nix
Raw Normal View History

2017-06-20 06:03:53 +01:00
{ stdenv, lib, fetchFromGitHub, autoreconfHook, bison, flex, pkgconfig }:
2017-06-20 06:03:53 +01:00
let version = "3.3.0"; in
stdenv.mkDerivation {
name = "libnl-${version}";
src = fetchFromGitHub {
repo = "libnl";
owner = "thom311";
2017-06-20 06:03:53 +01:00
rev = "libnl${lib.replaceStrings ["."] ["_"] version}";
sha256 = "1796kyq2lkhz2802v9kp32vlxf8ynlyqgyw9nhmry3qh5d0ahcsv";
};
outputs = [ "bin" "dev" "out" "man" ];
2015-10-18 19:49:41 +01:00
nativeBuildInputs = [ autoreconfHook bison flex pkgconfig ];
2017-06-20 06:03:53 +01:00
meta = with lib; {
inherit version;
homepage = http://www.infradead.org/~tgr/libnl/;
2017-06-20 06:03:53 +01:00
description = "Linux Netlink interface library suite";
license = licenses.lgpl21;
maintainers = with maintainers; [ fpletz ];
platforms = platforms.linux;
};
}