mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pciutils: 3.3.0 -> 3.3.1
This commit is contained in:
parent
faf57b2d05
commit
00d108e4f5
1 changed files with 2 additions and 11 deletions
|
@ -1,24 +1,15 @@
|
|||
{ stdenv, fetchurl, pkgconfig, zlib, kmod, which }:
|
||||
|
||||
let
|
||||
pciids = fetchurl {
|
||||
# Obtained from http://pciids.sourceforge.net/v2.2/pci.ids.bz2.
|
||||
url = http://tarballs.nixos.org/pci.ids.20131006.bz2;
|
||||
sha256 = "1vmshcgxqminiyh52pdcak24lm24qlic49py9cmkp96y1s48lvsc";
|
||||
};
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pciutils-3.3.0"; # with database from 2014-11-10
|
||||
name = "pciutils-3.3.1"; # with database from 2014-11-10
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kernel/software/utils/pciutils/${name}.tar.xz";
|
||||
sha256 = "008kh33kbpkk1wr9srrapw93imqx7l4djglrdkfxwvy6ppa9acs1";
|
||||
sha256 = "1ag3skny1bamqil46dlppw8j1fp08spqa60fjygbxkg4fzdknjji";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig zlib kmod which ];
|
||||
|
||||
#preBuild = "bunzip2 < ${pciids} > pci.ids";
|
||||
|
||||
makeFlags = "SHARED=yes PREFIX=\${out}";
|
||||
|
||||
installTargets = "install install-lib";
|
||||
|
|
Loading…
Reference in a new issue