summary refs log tree commit diff
path: root/pkgs/tools/system/lshw
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2010-11-15 20:36:50 +0000
committerMichael Raskin <7c6f434c@mail.ru>2010-11-15 20:36:50 +0000
commit4c4b783a108bf41661ff8141bf1f244a48b0775c (patch)
treefa6486273a13fc099a2e965aecc5d71ffaff01c1 /pkgs/tools/system/lshw
parent8a93e973700622c482bcbbab2e3813f5e66c09b3 (diff)
downloadnixpkgs-4c4b783a108bf41661ff8141bf1f244a48b0775c.tar
nixpkgs-4c4b783a108bf41661ff8141bf1f244a48b0775c.tar.gz
nixpkgs-4c4b783a108bf41661ff8141bf1f244a48b0775c.tar.bz2
nixpkgs-4c4b783a108bf41661ff8141bf1f244a48b0775c.tar.lz
nixpkgs-4c4b783a108bf41661ff8141bf1f244a48b0775c.tar.xz
nixpkgs-4c4b783a108bf41661ff8141bf1f244a48b0775c.tar.zst
nixpkgs-4c4b783a108bf41661ff8141bf1f244a48b0775c.zip
Fix typo
svn path=/nixpkgs/trunk/; revision=24703
Diffstat (limited to 'pkgs/tools/system/lshw')
-rw-r--r--pkgs/tools/system/lshw/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/system/lshw/default.nix b/pkgs/tools/system/lshw/default.nix
index fc791c2761b..a0f838cfcf9 100644
--- a/pkgs/tools/system/lshw/default.nix
+++ b/pkgs/tools/system/lshw/default.nix
@@ -22,11 +22,11 @@ stdenv.mkDerivation rec {
     rmdir $out/usr
   '';
 
-  meta = with stdenv.libs; {
+  meta = with stdenv.lib; {
     homepage = http://ezix.org/project/wiki/HardwareLiSter;
     description = "A small tool to provide detailed information on the hardware configuration of the machine.";
     license = licenses.gpl2;
     maintainers = [ maintainers.phreedom ];
     platforms = platforms.linux;
   };
-}
\ No newline at end of file
+}