mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
pciutils: Update to 3.1.10
Also update the pci.ids database.
This commit is contained in:
parent
f2ccebcae4
commit
46b05945e0
@ -1,19 +1,19 @@
|
|||||||
{ stdenv, fetchurl, zlib }:
|
{ stdenv, fetchurl, zlib }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "pciutils-3.1.7";
|
name = "pciutils-3.1.10";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://kernel/software/utils/pciutils/${name}.tar.bz2";
|
url = "mirror://kernel/software/utils/pciutils/${name}.tar.bz2";
|
||||||
sha256 = "0i7mqf1fkmdqsawdk2badv6k3xrkryq0i2xknclvy6kcjsv27znq";
|
sha256 = "0xdahcxd00c921wnxi0f0w3lzjqdfphwa5vglfcpf0lv3l2w40pl";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ zlib ];
|
buildInputs = [ zlib ];
|
||||||
|
|
||||||
pciids = fetchurl {
|
pciids = fetchurl {
|
||||||
# Obtained from http://pciids.sourceforge.net/v2.2/pci.ids.bz2.
|
# Obtained from http://pciids.sourceforge.net/v2.2/pci.ids.bz2.
|
||||||
url = http://nixos.org/tarballs/pci.ids.20100714.bz2;
|
url = http://nixos.org/tarballs/pci.ids.20120929.bz2;
|
||||||
sha256 = "0vll4svr60l6217yna7bfhcjm3prxr2b62ynq4jaagdp1rilfbap";
|
sha256 = "1q3i479ay88wam1zz1vbgkbqb2axg8av9qjxaigrqbnw2pv0srmb";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Override broken auto-detect logic.
|
# Override broken auto-detect logic.
|
||||||
@ -27,6 +27,9 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
installTargets = "install install-lib";
|
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 = {
|
meta = {
|
||||||
homepage = http://mj.ucw.cz/pciutils.shtml;
|
homepage = http://mj.ucw.cz/pciutils.shtml;
|
||||||
description = "A collection of programs for inspecting and manipulating configuration of PCI devices";
|
description = "A collection of programs for inspecting and manipulating configuration of PCI devices";
|
||||||
|
Loading…
Reference in New Issue
Block a user