2021-01-17 10:17:16 +01:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, zlib, kmod, which
|
2021-02-14 21:22:13 +01:00
|
|
|
, hwdata
|
2020-12-20 07:11:26 +01:00
|
|
|
, static ? stdenv.hostPlatform.isStatic
|
2021-02-15 00:05:32 +01:00
|
|
|
, IOKit
|
2022-12-18 14:02:10 +01:00
|
|
|
, gitUpdater
|
2020-09-01 08:10:34 +02:00
|
|
|
}:
|
2007-02-19 21:18:20 +01:00
|
|
|
|
2010-07-21 14:01:57 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2021-07-27 16:21:24 +02:00
|
|
|
pname = "pciutils";
|
2023-05-11 07:05:47 +02:00
|
|
|
version = "3.10.0"; # with release-date database
|
2012-09-29 05:15:49 +02:00
|
|
|
|
2007-02-19 21:18:20 +01:00
|
|
|
src = fetchurl {
|
2021-07-27 16:21:24 +02:00
|
|
|
url = "mirror://kernel/software/utils/pciutils/pciutils-${version}.tar.xz";
|
2023-05-11 07:05:47 +02:00
|
|
|
sha256 = "sha256-I4ouJxZnMOU6F/4Hv60ingf6ObYYEX5ZRLbX7an7sOk=";
|
2007-02-19 21:18:20 +01:00
|
|
|
};
|
2012-09-29 05:15:49 +02:00
|
|
|
|
2021-01-17 10:17:16 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2022-07-24 18:37:55 +02:00
|
|
|
buildInputs = [ which zlib ]
|
|
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ IOKit ]
|
|
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [ kmod ];
|
2020-09-24 03:54:41 +02:00
|
|
|
|
2022-07-24 18:37:55 +02:00
|
|
|
preConfigure = lib.optionalString (!stdenv.cc.isGNU) ''
|
2020-09-24 03:54:41 +02:00
|
|
|
substituteInPlace Makefile --replace 'CC=$(CROSS_COMPILE)gcc' ""
|
|
|
|
'';
|
2008-08-30 11:56:21 +02:00
|
|
|
|
2018-05-19 23:44:17 +02:00
|
|
|
makeFlags = [
|
2020-09-01 08:10:34 +02:00
|
|
|
"SHARED=${if static then "no" else "yes"}"
|
2018-05-19 23:44:17 +02:00
|
|
|
"PREFIX=\${out}"
|
|
|
|
"STRIP="
|
|
|
|
"HOST=${stdenv.hostPlatform.system}"
|
|
|
|
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
|
|
|
|
"DNS=yes"
|
|
|
|
];
|
2008-08-30 11:56:21 +02:00
|
|
|
|
2019-11-03 23:10:08 +01:00
|
|
|
installTargets = [ "install" "install-lib" ];
|
2008-08-30 11:56:21 +02:00
|
|
|
|
2021-02-14 21:22:13 +01:00
|
|
|
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
|
|
|
|
'';
|
2012-09-29 05:15:49 +02:00
|
|
|
|
2022-12-18 14:02:10 +01:00
|
|
|
passthru.updateScript = gitUpdater {
|
|
|
|
# No nicer place to find latest release.
|
|
|
|
url = "https://github.com/pciutils/pciutils.git";
|
|
|
|
rev-prefix = "v";
|
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2022-07-13 09:03:26 +02:00
|
|
|
homepage = "https://mj.ucw.cz/sw/pciutils/";
|
2008-08-30 11:56:21 +02:00
|
|
|
description = "A collection of programs for inspecting and manipulating configuration of PCI devices";
|
2014-11-10 20:16:16 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.vcunat ]; # not really, but someone should watch it
|
2007-02-26 13:07:46 +01:00
|
|
|
};
|
2007-02-19 21:18:20 +01:00
|
|
|
}
|