forked from mirrors/nixpkgs
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
This commit is contained in:
parent
5973392f60
commit
6c7793713d
|
@ -20,6 +20,7 @@ stdenv.mkDerivation rec {
|
||||||
${if withGUI then "make DESTDIR=$out install-gui" else ""}
|
${if withGUI then "make DESTDIR=$out install-gui" else ""}
|
||||||
mv $out/usr/* $out
|
mv $out/usr/* $out
|
||||||
rmdir $out/usr
|
rmdir $out/usr
|
||||||
|
mv $out/sbin $out/bin
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
Loading…
Reference in a new issue