summary refs log tree commit diff
path: root/pkgs/tools/system/pciutils
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-07-15 11:28:56 +0200
committerVladimír Čunát <vcunat@gmail.com>2017-07-15 11:28:56 +0200
commit2ab67778d6935f6c59ba9c4667cdad0554b7dbbb (patch)
tree2bf1e4da3349f8e221fed4ecd5824dde9e75c4c7 /pkgs/tools/system/pciutils
parent674c82739c1287da6f2446095f221d8da394788d (diff)
downloadnixpkgs-2ab67778d6935f6c59ba9c4667cdad0554b7dbbb.tar
nixpkgs-2ab67778d6935f6c59ba9c4667cdad0554b7dbbb.tar.gz
nixpkgs-2ab67778d6935f6c59ba9c4667cdad0554b7dbbb.tar.bz2
nixpkgs-2ab67778d6935f6c59ba9c4667cdad0554b7dbbb.tar.lz
nixpkgs-2ab67778d6935f6c59ba9c4667cdad0554b7dbbb.tar.xz
nixpkgs-2ab67778d6935f6c59ba9c4667cdad0554b7dbbb.tar.zst
nixpkgs-2ab67778d6935f6c59ba9c4667cdad0554b7dbbb.zip
pciutils: 3.5.4 -> 3.5.5
Diffstat (limited to 'pkgs/tools/system/pciutils')
-rw-r--r--pkgs/tools/system/pciutils/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/system/pciutils/default.nix b/pkgs/tools/system/pciutils/default.nix
index 998a3bdf6d1..8a4fe6cb3cf 100644
--- a/pkgs/tools/system/pciutils/default.nix
+++ b/pkgs/tools/system/pciutils/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, pkgconfig, zlib, kmod, which }:
 
 stdenv.mkDerivation rec {
-  name = "pciutils-3.5.4"; # with database from 2017-02
+  name = "pciutils-3.5.5"; # with database from 2017-07
 
   src = fetchurl {
     url = "mirror://kernel/software/utils/pciutils/${name}.tar.xz";
-    sha256 = "0rpy7kkb2y89wmbcbfjjjxsk2x89v5xxhxib4vpl131ip5m3qab4";
+    sha256 = "1d62f8fa192f90e61c35a6fc15ff3cb9a7a792f782407acc42ef67817c5939f5";
   };
 
   buildInputs = [ pkgconfig zlib kmod which ];