forked from mirrors/nixpkgs
fda26c8476
* master: (271 commits) pysmbc: clarify license pysmbc: fix license bazel: 0.5.4 -> 0.6.0 (#29990) googler: init at 3.3 go: declare support for aarch64 firefox-beta-bin: 56.0b5 -> 57.0b4 spotify: 1.0.64.401.g9d720389-21 -> 1.0.64.407.g9bd02c2d-26 gogs: 0.11.19 -> 0.11.29 grafana: 4.5.1 -> 4.5.2 mopidy-iris: 3.4.1 -> 3.4.9 nextcloud: 12.0.2 -> 12.0.3 haskell-json-autotype: jailbreak to fix build within LTS 9.x kore: fix up kore: init at 2.0.0 glusterfs service: fix issues with useRpcbind tig: 2.2.2 -> 2.3.0 haskell-hspec-core: enable test suite again hackage-packages.nix: automatic Haskell package set update librsvg: fix thumbnailer path awscli: 1.11.108 -> 1.11.162 ...
48 lines
1.4 KiB
Nix
48 lines
1.4 KiB
Nix
{ stdenv, lib, fetchurl, fetchpatch
|
|
, withGUI ? false, gtk2, pkgconfig, sqlite # compile GUI
|
|
}:
|
|
|
|
let numVersion = "02.18"; # :(
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "lshw-${numVersion}b";
|
|
version = "B.${numVersion}";
|
|
|
|
src = fetchurl {
|
|
url = "http://ezix.org/software/files/lshw-${version}.tar.gz";
|
|
sha256 = "0brwra4jld0d53d7jsgca415ljglmmx1l2iazpj4ndilr48yy8mf";
|
|
};
|
|
|
|
patches = [ (fetchpatch {
|
|
# fix crash in scan_dmi_sysfs() when run as non-root
|
|
url = "https://github.com/lyonel/lshw/commit/fbdc6ab15f7eea0ddcd63da355356ef156dd0d96.patch";
|
|
sha256 = "147wyr5m185f8swsmb4q1ahs9r1rycapbpa2548aqbv298bbish3";
|
|
})];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = lib.optionals withGUI [ gtk2 sqlite ];
|
|
|
|
# Fix version info.
|
|
preConfigure = ''
|
|
sed -e "s/return \"unknown\"/return \"${version}\"/" \
|
|
-i src/core/version.cc
|
|
'';
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
buildFlags = [ "all" ] ++ lib.optional withGUI "gui";
|
|
|
|
installTargets = [ "install" ] ++ lib.optional withGUI "install-gui";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://ezix.org/project/wiki/HardwareLiSter;
|
|
description = "Provide detailed information on the hardware configuration of the machine";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ phreedom jgeerds ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|