summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-06-12 09:05:12 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-06-12 09:12:14 +0200
commit1bcc2aa2162fb7fe46f6724f7dfb4f6caa10e88e (patch)
tree6463f561bf1f51e4e3732dc9123be46da60a005d /pkgs/tools
parente02e3ec6f348e08996565f2c3dbadf2bf3517fda (diff)
downloadnixlib-1bcc2aa2162fb7fe46f6724f7dfb4f6caa10e88e.tar
nixlib-1bcc2aa2162fb7fe46f6724f7dfb4f6caa10e88e.tar.gz
nixlib-1bcc2aa2162fb7fe46f6724f7dfb4f6caa10e88e.tar.bz2
nixlib-1bcc2aa2162fb7fe46f6724f7dfb4f6caa10e88e.tar.lz
nixlib-1bcc2aa2162fb7fe46f6724f7dfb4f6caa10e88e.tar.xz
nixlib-1bcc2aa2162fb7fe46f6724f7dfb4f6caa10e88e.tar.zst
nixlib-1bcc2aa2162fb7fe46f6724f7dfb4f6caa10e88e.zip
fix licenCe typos
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/graphics/nifskope/default.nix2
-rw-r--r--pkgs/tools/misc/tmpwatch/default.nix8
2 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/graphics/nifskope/default.nix b/pkgs/tools/graphics/nifskope/default.nix
index 32410caeeff7..13dc27921a43 100644
--- a/pkgs/tools/graphics/nifskope/default.nix
+++ b/pkgs/tools/graphics/nifskope/default.nix
@@ -46,6 +46,6 @@ stdenv.mkDerivation rec {
     description = "A tool for analyzing and editing NetImmerse/Gamebryo '*.nif' files";
     maintainers = [ stdenv.lib.maintainers.eelco ];
     platforms = stdenv.lib.platforms.linux;
-    licence = stdenv.lib.licenses.bsd3;
+    license = stdenv.lib.licenses.bsd3;
   };
 }
diff --git a/pkgs/tools/misc/tmpwatch/default.nix b/pkgs/tools/misc/tmpwatch/default.nix
index befe517c225c..c19d58b98162 100644
--- a/pkgs/tools/misc/tmpwatch/default.nix
+++ b/pkgs/tools/misc/tmpwatch/default.nix
@@ -8,11 +8,11 @@ stdenv.mkDerivation rec {
     sha256 = "1m5859ngwx61l1i4s6fja2avf1hyv6w170by273w8nsin89825lk";
   };
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = https://fedorahosted.org/tmpwatch/;
     description = "The tmpwatch utility recursively searches through specified directories and removes files which have not been accessed in a specified period of time.";
-    licence = "GPLv2";
-    maintainers = with stdenv.lib.maintainers; [ vlstill ];
-    platforms = stdenv.lib.platforms.unix;
+    license = licenses.gpl2;
+    maintainers = with maintainers; [ vlstill ];
+    platforms = platforms.unix;
   };
 }