nixpkgs/pkgs/tools/system/lshw/default.nix
Mateusz Kowalczyk 6c7793713d lshw: fix location of the binary
The binary was going into sbin so even with package in profile we still
couldn't use it.

cc @phreedom
2014-11-08 03:10:26 +00:00

34 lines
945 B
Nix

{ stdenv, fetchurl
, withGUI? false, gtk? null, pkgconfig? null, sqlite? null # compile GUI
}:
stdenv.mkDerivation rec {
name = "lshw-${version}";
version = "02.17b";
src = fetchurl {
url = http://ezix.org/software/files/lshw-B.02.17.tar.gz;
sha256 = "1728b96gyjmrp31knzips9azn6wkfdp5k5dnbil7h7hgz99w177b";
};
buildInputs = [] ++ stdenv.lib.optional withGUI [ gtk pkgconfig sqlite ];
postBuild = if withGUI then "make gui" else "";
installPhase = ''
make DESTDIR="$out" install
${if withGUI then "make DESTDIR=$out install-gui" else ""}
mv $out/usr/* $out
rmdir $out/usr
mv $out/sbin $out/bin
'';
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 = [ maintainers.phreedom ];
platforms = platforms.linux;
};
}