29 lines
749 B
Nix
29 lines
749 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, zlib, pciutils }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "biosdevname-${version}";
|
|
version = "0.7.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dell";
|
|
repo = "biosdevname";
|
|
rev = "v${version}";
|
|
sha256 = "183k6f9nayhai27y6nizf0sp9bj1kabykj66hcwdzllhrrh505sd";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ zlib pciutils ];
|
|
|
|
# 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 ];
|
|
};
|
|
}
|