nixpkgs/pkgs/tools/system/hwinfo/default.nix

41 lines
1.2 KiB
Nix
Raw Normal View History

2017-03-01 02:38:22 +00:00
{ stdenv, fetchFromGitHub, libx86emu, flex, perl }:
2015-04-20 11:55:04 +00:00
stdenv.mkDerivation rec {
name = "hwinfo-${version}";
2017-11-15 21:15:38 +00:00
version = "21.50";
2015-04-20 11:55:04 +00:00
2017-03-01 02:38:22 +00:00
src = fetchFromGitHub {
owner = "opensuse";
repo = "hwinfo";
rev = "${version}";
2017-11-15 21:15:38 +00:00
sha256 = "1kkq979qqdalxdm6f0gyl3l9nk5rm6i6rbms43rmy52jfda5f5bv";
2015-04-20 11:55:04 +00: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 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
'';
2017-11-15 21:15:38 +00:00
nativeBuildInputs = [ flex ];
buildInputs = [ libx86emu perl ];
makeFlags = [ "LIBDIR=/lib" ];
#enableParallelBuilding = true;
2015-04-20 11:55:04 +00:00
2017-11-15 21:15:38 +00:00
installFlags = [ "DESTDIR=$(out)" ];
2015-04-20 11:55:04 +00:00
meta = with stdenv.lib; {
description = "Hardware detection tool from openSUSE";
license = licenses.gpl2;
homepage = https://github.com/openSUSE/hwinfo;
2017-03-01 02:38:22 +00:00
maintainers = with maintainers; [ bobvanderlinden ndowens ];
2017-04-08 03:01:39 +00:00
platforms = platforms.linux;
2015-04-20 11:55:04 +00:00
};
}