4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
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.71";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "opensuse";
|
|
repo = "hwinfo";
|
|
rev = version;
|
|
sha256 = "1g671fvkg6r30n9vwwlqpdd6yn6jf7n9ynjmslblk7kbnabzayby";
|
|
};
|
|
|
|
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 libuuid ];
|
|
|
|
makeFlags = [ "LIBDIR=/lib" ];
|
|
#enableParallelBuilding = true;
|
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
description = "Hardware detection tool from openSUSE";
|
|
license = licenses.gpl2;
|
|
homepage = "https://github.com/openSUSE/hwinfo";
|
|
maintainers = with maintainers; [ bobvanderlinden ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|