summary refs log tree commit diff
path: root/pkgs/tools/system/lr
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2017-11-11 00:09:58 +0100
committerGitHub <noreply@github.com>2017-11-11 00:09:58 +0100
commitc9d69a255b4f589c6ca22c784ad9fc7797cf0276 (patch)
tree5ae68dba54b88e8f1eb9b6085cf6035f9b3977f4 /pkgs/tools/system/lr
parent98fcc3bd5d5006d7f647ad0a449d1b1e7f7a8641 (diff)
downloadnixlib-c9d69a255b4f589c6ca22c784ad9fc7797cf0276.tar
nixlib-c9d69a255b4f589c6ca22c784ad9fc7797cf0276.tar.gz
nixlib-c9d69a255b4f589c6ca22c784ad9fc7797cf0276.tar.bz2
nixlib-c9d69a255b4f589c6ca22c784ad9fc7797cf0276.tar.lz
nixlib-c9d69a255b4f589c6ca22c784ad9fc7797cf0276.tar.xz
nixlib-c9d69a255b4f589c6ca22c784ad9fc7797cf0276.tar.zst
nixlib-c9d69a255b4f589c6ca22c784ad9fc7797cf0276.zip
lr: 0.4 -> 1.1
Diffstat (limited to 'pkgs/tools/system/lr')
-rw-r--r--pkgs/tools/system/lr/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/tools/system/lr/default.nix b/pkgs/tools/system/lr/default.nix
index 171eff06b8db..d638a1c16b5d 100644
--- a/pkgs/tools/system/lr/default.nix
+++ b/pkgs/tools/system/lr/default.nix
@@ -2,22 +2,22 @@
 
 stdenv.mkDerivation rec {
   name = "lr-${version}";
-  version = "0.4";
+  version = "1.1";
 
   src = fetchFromGitHub {
     owner = "chneukirchen";
     repo = "lr";
     rev = "v${version}";
-    sha256 = "16qp0791s652yi86x472wwr62w6nhiyb1i662d85y5zyfagdf7dd";
+    sha256 = "171h353238s9wmhirvs2yc1151vds83a71p7wgn96wa3jpl248by";
   };
 
   makeFlags = "PREFIX=$(out)";
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = https://github.com/chneukirchen/lr;
     description = "List files recursively";
-    license = stdenv.lib.licenses.mit;
-    platforms = stdenv.lib.platforms.all;
-    maintainers = [ stdenv.lib.maintainers.globin ];
+    license = licenses.mit;
+    platforms = platforms.all;
+    maintainers = [ maintainers.globin ];
   };
 }