mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
0062dd2f14
The patch was integrated upstream.
29 lines
896 B
Nix
29 lines
896 B
Nix
{ stdenv, fetchurl, pkgconfig, zlib, kmod, which }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pciutils-3.5.4"; # with database from 2017-02
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/software/utils/pciutils/${name}.tar.xz";
|
|
sha256 = "0rpy7kkb2y89wmbcbfjjjxsk2x89v5xxhxib4vpl131ip5m3qab4";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig zlib kmod which ];
|
|
|
|
makeFlags = "SHARED=yes PREFIX=\${out}";
|
|
|
|
installTargets = "install install-lib";
|
|
|
|
# Get rid of update-pciids as it won't work.
|
|
postInstall = "rm $out/sbin/update-pciids $out/man/man8/update-pciids.8";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://mj.ucw.cz/pciutils.html;
|
|
description = "A collection of programs for inspecting and manipulating configuration of PCI devices";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.vcunat ]; # not really, but someone should watch it
|
|
};
|
|
}
|
|
|