mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, libx86emu, flex, perl, libuuid }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "hwinfo";
|
|
version = "21.76";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "opensuse";
|
|
repo = "hwinfo";
|
|
rev = version;
|
|
sha256 = "sha256-C0aYEgJC+ITxWcYBLPehNz9J1Y25gS1+UDVc3+7nIKQ=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# VERSION and changelog are usually generated using Git
|
|
# unless HWINFO_VERSION is defined (see Makefile)
|
|
export HWINFO_VERSION="${version}"
|
|
sed -i 's|^\(TARGETS\s*=.*\)\<changelog\>\(.*\)$|\1\2|g' Makefile
|
|
|
|
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"
|
|
'';
|
|
|
|
nativeBuildInputs = [ flex ];
|
|
buildInputs = [ libx86emu perl libuuid ];
|
|
|
|
makeFlags = [ "LIBDIR=/lib" ];
|
|
#enableParallelBuilding = true;
|
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
description = "Hardware detection tool from openSUSE";
|
|
license = licenses.gpl2Only;
|
|
homepage = "https://github.com/openSUSE/hwinfo";
|
|
maintainers = with maintainers; [ bobvanderlinden ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|