nixpkgs/pkgs/tools/networking/biosdevname/default.nix

37 lines
792 B
Nix
Raw Normal View History

2014-05-13 05:31:10 +01:00
{stdenv, fetchgit, automake, autoconf, zlib, pciutils}:
let
2015-01-14 03:11:41 +00:00
version = "0.6.1";
2014-05-13 05:31:10 +01:00
in
stdenv.mkDerivation {
name = "biosdevname-${version}";
src = fetchgit {
url = git://linux.dell.com/biosdevname.git;
rev = "refs/tags/v${version}";
2015-01-14 03:11:41 +00:00
sha256 = "11g2pziss0i65mr4y3mwjlcdgpygaxa06lr4q8plmrwl9cick1qa";
2014-05-13 05:31:10 +01:00
};
buildInputs = [
automake
autoconf
zlib
pciutils
];
preConfigure = ''
autoreconf -i
'';
# Don't install /lib/udev/rules.d/*-biosdevname.rules
patches = [ ./makefile.patch ];
configureFlags = [ "--sbindir=\${out}/bin" ];
meta = with stdenv.lib; {
description = "Udev helper for naming devices per BIOS names";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ cstrahan ];
};
}