python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / biosdevname / default.nix
blobf44574fb03647050ce12839ef1f443c352263a9d
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, zlib, pciutils }:
3 stdenv.mkDerivation rec {
4   pname = "biosdevname";
5   version = "0.7.3";
7   src = fetchFromGitHub {
8     owner = "dell";
9     repo = "biosdevname";
10     rev = "v${version}";
11     sha256 = "19wbb79x9h79k55sgd4dylvdbhhrvfaiaknbw9s1wvfmirkxa1dz";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
15   buildInputs = [ zlib pciutils ];
17   # Don't install /lib/udev/rules.d/*-biosdevname.rules
18   patches = [ ./makefile.patch ];
20   configureFlags = [ "--sbindir=\${out}/bin" ];
22   meta = with lib; {
23     description = "Udev helper for naming devices per BIOS names";
24     license = licenses.gpl2;
25     platforms = ["x86_64-linux" "i686-linux"];
26     maintainers = with maintainers; [ cstrahan ];
27   };