summary refs log tree commit diff
path: root/pkgs/tools/system/pciutils
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-01-07 00:17:59 +0100
committerVladimír Čunát <vcunat@gmail.com>2016-01-07 00:17:59 +0100
commit36e7b376ebeef5ca0988fae9c6592784586763bf (patch)
tree6bb5b5a634519c080f5dcc85cbb3cd0a0d783539 /pkgs/tools/system/pciutils
parentc037d31e44b9b5ae8371ea4baa69f007d5bd7051 (diff)
downloadnixpkgs-36e7b376ebeef5ca0988fae9c6592784586763bf.tar
nixpkgs-36e7b376ebeef5ca0988fae9c6592784586763bf.tar.gz
nixpkgs-36e7b376ebeef5ca0988fae9c6592784586763bf.tar.bz2
nixpkgs-36e7b376ebeef5ca0988fae9c6592784586763bf.tar.lz
nixpkgs-36e7b376ebeef5ca0988fae9c6592784586763bf.tar.xz
nixpkgs-36e7b376ebeef5ca0988fae9c6592784586763bf.tar.zst
nixpkgs-36e7b376ebeef5ca0988fae9c6592784586763bf.zip
pciutils: minor update 3.4.0 -> 3.4.1
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 447b1cd63b9..7c236588544 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.4.0"; # with database from 2015-09
+  name = "pciutils-3.4.1"; # with database from 2016-01
 
   src = fetchurl {
     url = "mirror://kernel/software/utils/pciutils/${name}.tar.xz";
-    sha256 = "15liffqvdwbpza210wfqy2y135dvg7sbyqr7gvhyjllgspv8z2gq";
+    sha256 = "0am8hiv435h2dayclnkdk8qjlpj08m4djf6sv15n9l84av658mc6";
   };
 
   buildInputs = [ pkgconfig zlib kmod which ];