summary refs log tree commit diff
path: root/pkgs/tools/system/lr
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2017-08-12 16:59:44 +0200
committerRobin Gloster <mail@glob.in>2017-08-12 18:27:08 +0200
commit4ebac8f702be49a8f18f72bdb00148d7ffc896c9 (patch)
tree761a25ba778832f0faafddc2ea2e3ec3ec872b51 /pkgs/tools/system/lr
parenta9e463bc9d97fcc3a909014594f99590d3198a18 (diff)
downloadnixlib-4ebac8f702be49a8f18f72bdb00148d7ffc896c9.tar
nixlib-4ebac8f702be49a8f18f72bdb00148d7ffc896c9.tar.gz
nixlib-4ebac8f702be49a8f18f72bdb00148d7ffc896c9.tar.bz2
nixlib-4ebac8f702be49a8f18f72bdb00148d7ffc896c9.tar.lz
nixlib-4ebac8f702be49a8f18f72bdb00148d7ffc896c9.tar.xz
nixlib-4ebac8f702be49a8f18f72bdb00148d7ffc896c9.tar.zst
nixlib-4ebac8f702be49a8f18f72bdb00148d7ffc896c9.zip
lr: 0.3.2 -> 0.4
Diffstat (limited to 'pkgs/tools/system/lr')
-rw-r--r--pkgs/tools/system/lr/default.nix9
1 files changed, 3 insertions, 6 deletions
diff --git a/pkgs/tools/system/lr/default.nix b/pkgs/tools/system/lr/default.nix
index 11f30f6f4448..5510ec0e9486 100644
--- a/pkgs/tools/system/lr/default.nix
+++ b/pkgs/tools/system/lr/default.nix
@@ -1,17 +1,14 @@
 { stdenv, fetchFromGitHub }:
 
-let
-  version = "0.3.2";
-in
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
   name = "lr-${version}";
-  inherit version;
+  version = "0.4";
 
   src = fetchFromGitHub {
     owner = "chneukirchen";
     repo = "lr";
     rev = "v${version}";
-    sha256 = "1bbgzshayk0kzmlyw44jqskgmxz5c4jh2h0bqg3n5zi89588ng2k";
+    sha256 = "16qp0791s652yi86x472wwr62w6nhiyb1i662d85y5zyfagdf7dd";
   };
 
   makeFlags = "PREFIX=$(out)";