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

41 lines
1.2 KiB
Nix
Raw Normal View History

2017-03-01 05:38:22 +03:00
{ stdenv, fetchFromGitHub, libx86emu, flex, perl }:
2015-04-20 14:55:04 +03:00
stdenv.mkDerivation rec {
name = "hwinfo-${version}";
version = "21.62";
2015-04-20 14:55:04 +03:00
2017-03-01 05:38:22 +03:00
src = fetchFromGitHub {
owner = "opensuse";
repo = "hwinfo";
rev = "${version}";
sha256 = "1mhvpvjdalxhvjkf8vhph414qfp14kwz24jk0mx2y4nijk958n0f";
2015-04-20 14:55:04 +03:00
};
patchPhase = ''
2017-11-16 00:15:38 +03:00
# VERSION and changelog are usually generated using Git
# unless HWINFO_VERSION is defined (see Makefile)
export HWINFO_VERSION="${version}"
2015-04-20 14:55:04 +03:00
sed -i 's|^\(TARGETS\s*=.*\)\<changelog\>\(.*\)$|\1\2|g' Makefile
2017-11-16 00:15:38 +03: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 14:55:04 +03:00
'';
2017-11-16 00:15:38 +03:00
nativeBuildInputs = [ flex ];
buildInputs = [ libx86emu perl ];
makeFlags = [ "LIBDIR=/lib" ];
#enableParallelBuilding = true;
2015-04-20 14:55:04 +03:00
2017-11-16 00:15:38 +03:00
installFlags = [ "DESTDIR=$(out)" ];
2015-04-20 14:55:04 +03:00
meta = with stdenv.lib; {
description = "Hardware detection tool from openSUSE";
license = licenses.gpl2;
homepage = https://github.com/openSUSE/hwinfo;
2017-03-01 05:38:22 +03:00
maintainers = with maintainers; [ bobvanderlinden ndowens ];
2017-04-08 06:01:39 +03:00
platforms = platforms.linux;
2015-04-20 14:55:04 +03:00
};
}