about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-07-03 20:03:02 -0700
committerR. RyanTM <ryantm+bot@ryantm.com>2018-07-03 20:03:02 -0700
commita486ada6605355bd7d7e60ea8dc31651a3dae6da (patch)
tree0a16e48c6cf074a54a08e31b1306c68008f62ede /pkgs
parenta260b3d681164bedaeb90fd578390147799d638c (diff)
downloadnixlib-a486ada6605355bd7d7e60ea8dc31651a3dae6da.tar
nixlib-a486ada6605355bd7d7e60ea8dc31651a3dae6da.tar.gz
nixlib-a486ada6605355bd7d7e60ea8dc31651a3dae6da.tar.bz2
nixlib-a486ada6605355bd7d7e60ea8dc31651a3dae6da.tar.lz
nixlib-a486ada6605355bd7d7e60ea8dc31651a3dae6da.tar.xz
nixlib-a486ada6605355bd7d7e60ea8dc31651a3dae6da.tar.zst
nixlib-a486ada6605355bd7d7e60ea8dc31651a3dae6da.zip
pciutils: 3.5.6 -> 3.6.0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/pciutils/versions.

These checks were done:

- built on NixOS
- /nix/store/43hmbdyx3rr7ffzyhbqc3lk96sn64zh0-pciutils-3.6.0/bin/lspci passed the binary check.
- /nix/store/43hmbdyx3rr7ffzyhbqc3lk96sn64zh0-pciutils-3.6.0/bin/setpci passed the binary check.
- 2 of 2 passed binary check by having a zero exit code.
- 2 of 2 passed binary check by having the new version present in output.
- found 3.6.0 with grep in /nix/store/43hmbdyx3rr7ffzyhbqc3lk96sn64zh0-pciutils-3.6.0
- directory tree listing: https://gist.github.com/846575baea469566671c1177083dfea1
- du listing: https://gist.github.com/db18397cd0d36e6ea780918c1acf466f
Diffstat (limited to 'pkgs')
-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 c4b5699ffc29..7e0f614376de 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.6"; # with database from 2017-07
+  name = "pciutils-3.6.0"; # with database from 2017-07
 
   src = fetchurl {
     url = "mirror://kernel/software/utils/pciutils/${name}.tar.xz";
-    sha256 = "08dvsk1b5m1r7qqzsm849h4glq67mngf8zw7bg0102ff1jwywipk";
+    sha256 = "17g9rvjknj2yqwxldnz8m5kaabbdvkcjnfic4sbx88kh0s81197j";
   };
 
   nativeBuildInputs = [ pkgconfig ];