2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, libx86emu, flex, perl, libuuid }:
|
2015-04-20 12:55:04 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "hwinfo";
|
2021-02-04 11:52:43 +00:00
|
|
|
version = "21.72";
|
2015-04-20 12:55:04 +01:00
|
|
|
|
2017-03-01 02:38:22 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "opensuse";
|
|
|
|
repo = "hwinfo";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2021-02-04 11:52:43 +00:00
|
|
|
sha256 = "sha256-T/netiZqox+qa19wH+h8cbsGbiM+9VrSEIjccrPYqws=";
|
2015-04-20 12:55:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patchPhase = ''
|
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 12:55:04 +01: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 12:55:04 +01:00
|
|
|
'';
|
|
|
|
|
2017-11-15 21:15:38 +00:00
|
|
|
nativeBuildInputs = [ flex ];
|
2019-06-16 12:11:47 +01:00
|
|
|
buildInputs = [ libx86emu perl libuuid ];
|
2017-11-15 21:15:38 +00:00
|
|
|
|
|
|
|
makeFlags = [ "LIBDIR=/lib" ];
|
|
|
|
#enableParallelBuilding = true;
|
2015-04-20 12:55:04 +01:00
|
|
|
|
2017-11-15 21:15:38 +00:00
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
2015-04-20 12:55:04 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-04-20 12:55:04 +01:00
|
|
|
description = "Hardware detection tool from openSUSE";
|
|
|
|
license = licenses.gpl2;
|
2020-03-29 21:22:56 +01:00
|
|
|
homepage = "https://github.com/openSUSE/hwinfo";
|
2019-12-26 21:28:10 +00:00
|
|
|
maintainers = with maintainers; [ bobvanderlinden ];
|
2017-04-08 04:01:39 +01:00
|
|
|
platforms = platforms.linux;
|
2015-04-20 12:55:04 +01:00
|
|
|
};
|
|
|
|
}
|