nixpkgs/pkgs/tools/system/hwinfo/default.nix
Ryan Mulligan 5ee6e830fa hwinfo: 21.50 -> 21.52
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/24ksvmssi2inha3nqbcdp1vdfl1pgkdn-hwinfo-21.52/bin/hwinfo -h` got 0 exit code
- ran `/nix/store/24ksvmssi2inha3nqbcdp1vdfl1pgkdn-hwinfo-21.52/bin/hwinfo --help` got 0 exit code
- ran `/nix/store/24ksvmssi2inha3nqbcdp1vdfl1pgkdn-hwinfo-21.52/bin/hwinfo --version` and found version 21.52
- ran `/nix/store/24ksvmssi2inha3nqbcdp1vdfl1pgkdn-hwinfo-21.52/bin/check_hd help` got 0 exit code
- ran `/nix/store/24ksvmssi2inha3nqbcdp1vdfl1pgkdn-hwinfo-21.52/bin/getsysinfo -h` got 0 exit code
- ran `/nix/store/24ksvmssi2inha3nqbcdp1vdfl1pgkdn-hwinfo-21.52/bin/getsysinfo --help` got 0 exit code
- ran `/nix/store/24ksvmssi2inha3nqbcdp1vdfl1pgkdn-hwinfo-21.52/bin/getsysinfo help` got 0 exit code
- found 21.52 with grep in /nix/store/24ksvmssi2inha3nqbcdp1vdfl1pgkdn-hwinfo-21.52
- found 21.52 in filename of file in /nix/store/24ksvmssi2inha3nqbcdp1vdfl1pgkdn-hwinfo-21.52

cc "@bobvanderlinden @ndowens"
2018-02-26 19:01:01 -08:00

41 lines
1.2 KiB
Nix

{ stdenv, fetchFromGitHub, libx86emu, flex, perl }:
stdenv.mkDerivation rec {
name = "hwinfo-${version}";
version = "21.52";
src = fetchFromGitHub {
owner = "opensuse";
repo = "hwinfo";
rev = "${version}";
sha256 = "1kva5bhylxbxgp2lv48av8mzcyybigj45rbwl9736l1kiv58i21r";
};
patchPhase = ''
# 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 ];
makeFlags = [ "LIBDIR=/lib" ];
#enableParallelBuilding = true;
installFlags = [ "DESTDIR=$(out)" ];
meta = with stdenv.lib; {
description = "Hardware detection tool from openSUSE";
license = licenses.gpl2;
homepage = https://github.com/openSUSE/hwinfo;
maintainers = with maintainers; [ bobvanderlinden ndowens ];
platforms = platforms.linux;
};
}