f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
27 lines
736 B
Nix
27 lines
736 B
Nix
{ stdenv, lib, fetchFromGitHub, autoreconfHook, bison, flex, pkgconfig }:
|
|
|
|
let version = "3.3.0"; in
|
|
stdenv.mkDerivation {
|
|
name = "libnl-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "libnl";
|
|
owner = "thom311";
|
|
rev = "libnl${lib.replaceStrings ["."] ["_"] version}";
|
|
sha256 = "1796kyq2lkhz2802v9kp32vlxf8ynlyqgyw9nhmry3qh5d0ahcsv";
|
|
};
|
|
|
|
outputs = [ "bin" "dev" "out" "man" ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook bison flex pkgconfig ];
|
|
|
|
meta = with lib; {
|
|
inherit version;
|
|
homepage = http://www.infradead.org/~tgr/libnl/;
|
|
description = "Linux Netlink interface library suite";
|
|
license = licenses.lgpl21;
|
|
maintainers = with maintainers; [ fpletz ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|