tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
pciutils: 3.5.4 -> 3.5.5
Vladimír Čunát
8 years ago
2ab67778
674c8273
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
system
pciutils
default.nix
+2
-2
pkgs/tools/system/pciutils/default.nix
···
1
1
{ stdenv, fetchurl, pkgconfig, zlib, kmod, which }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
-
name = "pciutils-3.5.4"; # with database from 2017-02
4
4
+
name = "pciutils-3.5.5"; # with database from 2017-07
5
5
6
6
src = fetchurl {
7
7
url = "mirror://kernel/software/utils/pciutils/${name}.tar.xz";
8
8
-
sha256 = "0rpy7kkb2y89wmbcbfjjjxsk2x89v5xxhxib4vpl131ip5m3qab4";
8
8
+
sha256 = "1d62f8fa192f90e61c35a6fc15ff3cb9a7a792f782407acc42ef67817c5939f5";
9
9
};
10
10
11
11
buildInputs = [ pkgconfig zlib kmod which ];