summary refs log tree commit diff
path: root/pkgs/tools/misc/hddtemp
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-03-16 01:13:00 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-03-16 21:10:20 +0100
commitdf0f4baec4cd7811c6ae052fec648c7055903df1 (patch)
tree8c036153ee518e118a7faf19b241727fa788834c /pkgs/tools/misc/hddtemp
parentd920f67b64130ec8706df4e6970f2a685add11ae (diff)
downloadnixpkgs-df0f4baec4cd7811c6ae052fec648c7055903df1.tar
nixpkgs-df0f4baec4cd7811c6ae052fec648c7055903df1.tar.gz
nixpkgs-df0f4baec4cd7811c6ae052fec648c7055903df1.tar.bz2
nixpkgs-df0f4baec4cd7811c6ae052fec648c7055903df1.tar.lz
nixpkgs-df0f4baec4cd7811c6ae052fec648c7055903df1.tar.xz
nixpkgs-df0f4baec4cd7811c6ae052fec648c7055903df1.tar.zst
nixpkgs-df0f4baec4cd7811c6ae052fec648c7055903df1.zip
hddtemp: correct licence: gpl2 -> gpl2Plus
Diffstat (limited to 'pkgs/tools/misc/hddtemp')
-rw-r--r--pkgs/tools/misc/hddtemp/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/hddtemp/default.nix b/pkgs/tools/misc/hddtemp/default.nix
index 925ea13780a..13b69dad971 100644
--- a/pkgs/tools/misc/hddtemp/default.nix
+++ b/pkgs/tools/misc/hddtemp/default.nix
@@ -23,10 +23,10 @@ stdenv.mkDerivation {
       ./configure --prefix=$out --with-db-path=$out/nix-support/hddtemp.db
     '';
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Tool for displaying hard disk temperature";
     homepage = https://savannah.nongnu.org/projects/hddtemp/;
-    license = stdenv.lib.licenses.gpl2;
-    platforms = stdenv.lib.platforms.linux;
+    license = licenses.gpl2Plus;
+    platforms = platforms.linux;
   };
 }