nixpkgs/pkgs/os-specific/linux/libnl/default.nix
Vladimír Čunát 96d41e393d
treewide: purge maintainers.urkud
It's sad, but he's been inactive for the last five years.
Keeping such people in meta.maintainers is counter-productive.
2017-03-27 19:52:29 +02:00

26 lines
638 B
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, bison, flex, pkgconfig }:
let version = "3.2.29"; in
stdenv.mkDerivation {
name = "libnl-${version}";
src = fetchFromGitHub {
sha256 = "0y8fcb1bfbdvxgckq5p6l4jzx0kvv3g11svy6d5v3i6zy9kkq8wh";
rev = "libnl3_2_29";
repo = "libnl";
owner = "thom311";
};
outputs = [ "bin" "dev" "out" "man" ];
nativeBuildInputs = [ autoreconfHook bison flex pkgconfig ];
meta = {
inherit version;
homepage = "http://www.infradead.org/~tgr/libnl/";
description = "Linux NetLink interface library";
maintainers = [ ];
platforms = stdenv.lib.platforms.linux;
};
}