tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
pciutils: 3.4.1 -> 3.5.1
Eelco Dolstra
9 years ago
64f22ddd
1a52fdc3
+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.4.1"; # with database from 2016-01
4
4
+
name = "pciutils-3.5.1"; # with database from 2016-05
5
5
6
6
src = fetchurl {
7
7
url = "mirror://kernel/software/utils/pciutils/${name}.tar.xz";
8
8
-
sha256 = "0am8hiv435h2dayclnkdk8qjlpj08m4djf6sv15n9l84av658mc6";
8
8
+
sha256 = "0byl2f897w5lhs4bvr6p7qwcz9bllj2zyfv7nywbcbsnb9ha9wrb";
9
9
};
10
10
11
11
buildInputs = [ pkgconfig zlib kmod which ];