3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/system/hwinfo/default.nix

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

58 lines
1.2 KiB
Nix
Raw Normal View History

2021-11-28 10:58:58 +00:00
{ lib
, stdenv
, fetchFromGitHub
, flex
, libuuid
, libx86emu
, perl
}:
2015-04-20 12:55:04 +01:00
stdenv.mkDerivation rec {
pname = "hwinfo";
2021-12-31 02:26:46 +00:00
version = "21.80";
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-12-31 02:26:46 +00:00
sha256 = "sha256-T4ny1tq3IMtmeZRgcAOvu2O23XEiLeKRoqOxhuVGBRw=";
2015-04-20 12:55:04 +01:00
};
2021-11-28 10:58:58 +00:00
nativeBuildInputs = [
flex
];
buildInputs = [
libuuid
libx86emu
perl
];
2021-04-28 15:48:00 +01: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 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
'';
2021-11-28 10:58:58 +00:00
makeFlags = [
"LIBDIR=/lib"
];
2015-04-20 12:55:04 +01:00
2021-11-28 10:58:58 +00:00
installFlags = [
"DESTDIR=$(out)"
];
2015-04-20 12:55:04 +01:00
meta = with lib; {
2015-04-20 12:55:04 +01:00
description = "Hardware detection tool from openSUSE";
2021-04-28 15:48:00 +01:00
license = licenses.gpl2Only;
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
};
}