2021-11-28 10:58:58 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, flex
|
|
|
|
, libuuid
|
|
|
|
, libx86emu
|
|
|
|
, perl
|
|
|
|
}:
|
2015-04-20 11:55:04 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
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";
|
2019-09-08 23:38:31 +00:00
|
|
|
rev = version;
|
2023-07-23 07:50:41 +00:00
|
|
|
hash = "sha256-YAhsnE1DJ5UlYAuhDxS/5IpfIJB6DrhCT3E0YiKENjU=";
|
2015-04-20 11:55:04 +00:00
|
|
|
};
|
|
|
|
|
2021-11-28 10:58:58 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
flex
|
|
|
|
];
|
|
|
|
|
|
|
|
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)
|
|
|
|
export HWINFO_VERSION="${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"
|
2015-04-20 11:55:04 +00:00
|
|
|
'';
|
|
|
|
|
2021-11-28 10:58:58 +00:00
|
|
|
makeFlags = [
|
|
|
|
"LIBDIR=/lib"
|
|
|
|
];
|
2015-04-20 11:55:04 +00:00
|
|
|
|
2021-11-28 10:58:58 +00:00
|
|
|
installFlags = [
|
|
|
|
"DESTDIR=$(out)"
|
|
|
|
];
|
2015-04-20 11:55:04 +00:00
|
|
|
|
2021-01-11 07:54:33 +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
|
|
|
};
|
|
|
|
}
|