mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
326d84112c
...into staging
65 lines
1.9 KiB
Nix
65 lines
1.9 KiB
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, zlib, kmod, which
|
|
, hwdata
|
|
, static ? stdenv.hostPlatform.isStatic
|
|
, IOKit
|
|
, gitUpdater
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pciutils";
|
|
version = "3.13.0"; # with release-date database
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pciutils";
|
|
repo = "pciutils";
|
|
rev = "v${version}";
|
|
hash = "sha256-buhq7SN6eH+sckvT5mJ8eP4C1EP/4CUFt3gooJohJW0=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ which zlib ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ IOKit ]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [ kmod ];
|
|
|
|
preConfigure = lib.optionalString (!stdenv.cc.isGNU) ''
|
|
substituteInPlace Makefile --replace 'CC=$(CROSS_COMPILE)gcc' ""
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
makeFlags = [
|
|
"SHARED=${if static then "no" else "yes"}"
|
|
"PREFIX=\${out}"
|
|
"STRIP="
|
|
"HOST=${stdenv.hostPlatform.system}"
|
|
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
|
|
"DNS=yes"
|
|
];
|
|
|
|
installTargets = [ "install" "install-lib" ];
|
|
|
|
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 = with lib; {
|
|
homepage = "https://mj.ucw.cz/sw/pciutils/";
|
|
description = "Collection of programs for inspecting and manipulating configuration of PCI devices";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.vcunat ]; # not really, but someone should watch it
|
|
mainProgram = "lspci";
|
|
};
|
|
}
|