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

29 lines
753 B
Nix
Raw Normal View History

2017-01-26 01:30:02 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, zlib, pciutils }:
stdenv.mkDerivation rec {
pname = "biosdevname";
2018-02-09 01:58:20 +00:00
version = "0.7.3";
2017-01-26 01:30:02 +00:00
src = fetchFromGitHub {
owner = "dell";
repo = "biosdevname";
rev = "v${version}";
2018-02-09 01:58:20 +00:00
sha256 = "19wbb79x9h79k55sgd4dylvdbhhrvfaiaknbw9s1wvfmirkxa1dz";
2014-05-13 04:31:10 +00:00
};
2017-01-26 01:30:02 +00:00
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ zlib pciutils ];
2014-05-13 04:31:10 +00:00
# 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 = ["x86_64-linux" "i686-linux"];
2014-05-13 04:31:10 +00:00
maintainers = with maintainers; [ cstrahan ];
};
}