nixpkgs/pkgs/by-name/hw/hwinfo/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
1.8 KiB
Nix
Raw Normal View History

{
lib,
stdenv,
fetchFromGitHub,
flex,
libuuid,
libx86emu,
perl,
kmod,
systemdMinimal,
2021-11-28 10:58:58 +00:00
}:
2015-04-20 11:55:04 +00:00
2024-08-19 19:09:52 +00:00
stdenv.mkDerivation (finalAttrs: {
pname = "hwinfo";
2023-07-23 07:50:41 +00:00
version = "23.2";
2015-04-20 11:55:04 +00:00
2017-03-01 02:38:22 +00:00
src = fetchFromGitHub {
owner = "opensuse";
repo = "hwinfo";
2024-08-19 19:09:52 +00:00
rev = finalAttrs.version;
2023-07-23 07:50:41 +00:00
hash = "sha256-YAhsnE1DJ5UlYAuhDxS/5IpfIJB6DrhCT3E0YiKENjU=";
2015-04-20 11:55:04 +00:00
};
2024-08-19 19:06:29 +00:00
nativeBuildInputs = [ flex ];
2021-11-28 10:58:58 +00:00
buildInputs = [
libuuid
libx86emu
perl
];
2021-04-28 14:48:00 +00:00
postPatch = ''
2017-11-15 21:15:38 +00:00
# VERSION and changelog are usually generated using Git
# unless HWINFO_VERSION is defined (see Makefile)
2024-08-19 19:09:52 +00:00
export HWINFO_VERSION="${finalAttrs.version}"
2015-04-20 11:55:04 +00:00
sed -i 's|^\(TARGETS\s*=.*\)\<changelog\>\(.*\)$|\1\2|g' Makefile
2017-11-15 21:15:38 +00:00
substituteInPlace Makefile --replace "/sbin" "/bin" --replace "/usr/" "/"
substituteInPlace src/isdn/cdb/Makefile --replace "lex isdn_cdb.lex" "flex isdn_cdb.lex"
substituteInPlace hwinfo.pc.in --replace "prefix=/usr" "prefix=$out"
# replace absolute paths with relative, we will prefix PATH later
substituteInPlace src/hd/hd_int.h \
--replace-fail "/sbin/modprobe" "${kmod}/bin/modprobe" \
--replace-fail "/sbin/rmmod" "${kmod}/bin/rmmod" \
--replace-fail "/usr/bin/udevinfo" "${systemdMinimal}/bin/udevinfo" \
--replace-fail "/usr/bin/udevadm" "${systemdMinimal}/bin/udevadm"
# check for leftover references to FHS binaries.
if grep /sbin /usr/bin src/hd/hd_int.h
then
echo "Santity check failed. The above lines should be replaced in src/hd/hd_int.h"
exit 1
fi
2015-04-20 11:55:04 +00:00
'';
makeFlags = [ "LIBDIR=/lib" ];
2015-04-20 11:55:04 +00:00
installFlags = [ "DESTDIR=$(out)" ];
2015-04-20 11:55:04 +00:00
meta = with lib; {
2015-04-20 11:55:04 +00:00
description = "Hardware detection tool from openSUSE";
2021-04-28 14:48:00 +00:00
license = licenses.gpl2Only;
2020-03-29 20:22:56 +00:00
homepage = "https://github.com/openSUSE/hwinfo";
2019-12-26 21:28:10 +00:00
maintainers = with maintainers; [ bobvanderlinden ];
2017-04-08 03:01:39 +00:00
platforms = platforms.linux;
2015-04-20 11:55:04 +00:00
};
2024-08-19 19:09:52 +00:00
})