1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
{
lib,
stdenv,
fetchFromGitHub,
pkg-config,
zlib,
kmod,
which,
hwdata,
static ? stdenv.hostPlatform.isStatic,
gitUpdater,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "pciutils";
version = "3.15.0"; # with release-date database
src = fetchFromGitHub {
owner = "pciutils";
repo = "pciutils";
rev = "v${finalAttrs.version}";
hash = "sha256-fPtOhUz8Hlo0ajCZbNOwT4fiuL8HlFQ7NGk+nQpmKZM=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
which
zlib
]
++ lib.optionals stdenv.hostPlatform.isLinux [ kmod ];
preConfigure = lib.optionalString (!stdenv.cc.isGNU) ''
substituteInPlace Makefile --replace 'CC=$(CROSS_COMPILE)gcc' ""
'';
enableParallelBuilding = true;
makeFlags = [
"SHARED=${lib.boolToYesNo (!static)}"
"PREFIX=\${out}"
"STRIP="
"HOST=${stdenv.hostPlatform.system}"
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
"DNS=yes"
];
installTargets = [
"install"
"install-lib"
];
# Since this package doesn't use an autotools generated configure script,
# splitting the dev or lib outputs produces incorrect files, evident by e.g
# pkg-config files which point to wrong paths. manual pages OTH are moved to
# the $man outputs naturally by stdenv.
outputs = [
"out"
"man"
];
postInstall = ''
# Remove update-pciids as it won't work on nixos
rm $out/sbin/update-pciids $out/man/man8/update-pciids.8
# use database from hwdata instead
# (we don't create a symbolic link because we do not want to pull in the
# full closure of hwdata)
cp --reflink=auto ${hwdata}/share/hwdata/pci.ids $out/share/pci.ids
'';
passthru.updateScript = gitUpdater {
# No nicer place to find latest release.
url = "https://github.com/pciutils/pciutils.git";
rev-prefix = "v";
};
meta = {
homepage = "https://mj.ucw.cz/sw/pciutils/";
description = "Collection of programs for inspecting and manipulating configuration of PCI devices";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.vcunat ]; # not really, but someone should watch it
mainProgram = "lspci";
};
})
|