summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/boot
diff options
context:
space:
mode:
authorAndré Stylianos Ramos <andre.stylianos@gmail.com>2017-11-01 14:10:07 +0100
committerAndré Stylianos Ramos <andre.stylianos@gmail.com>2017-11-01 14:10:07 +0100
commit8014307c643b8de8d04ad44e35f6cfb2a263162a (patch)
treeaeedbdb5f74a1eb9a79f0e0fa304666dc79d485f /pkgs/development/tools/build-managers/boot
parent737b4660311bd691200ebe1d422a8ff4958ad676 (diff)
downloadnixpkgs-8014307c643b8de8d04ad44e35f6cfb2a263162a.tar
nixpkgs-8014307c643b8de8d04ad44e35f6cfb2a263162a.tar.gz
nixpkgs-8014307c643b8de8d04ad44e35f6cfb2a263162a.tar.bz2
nixpkgs-8014307c643b8de8d04ad44e35f6cfb2a263162a.tar.lz
nixpkgs-8014307c643b8de8d04ad44e35f6cfb2a263162a.tar.xz
nixpkgs-8014307c643b8de8d04ad44e35f6cfb2a263162a.tar.zst
nixpkgs-8014307c643b8de8d04ad44e35f6cfb2a263162a.zip
boot: 2.5.2 -> 2.7.2
Diffstat (limited to 'pkgs/development/tools/build-managers/boot')
-rw-r--r--pkgs/development/tools/build-managers/boot/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/tools/build-managers/boot/default.nix b/pkgs/development/tools/build-managers/boot/default.nix
index 6f9c2ce38a7..d9dc59ee72d 100644
--- a/pkgs/development/tools/build-managers/boot/default.nix
+++ b/pkgs/development/tools/build-managers/boot/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, jdk }:
 
 stdenv.mkDerivation rec {
-  version = "2.5.2";
+  version = "2.7.2";
   name = "boot-${version}";
 
   src = fetchurl {
     url = "https://github.com/boot-clj/boot-bin/releases/download/${version}/boot.sh";
-    sha256 = "0brsimvmmpksxwc4l5c0x0cl5hhdjz76crd26yxphjvzyf7fypc9";
+    sha256 = "1hqp3xxmsj5vkym0l3blhlaq9g3w0lhjgmp37g6y3rr741znkk8c";
   };
 
   inherit jdk;
@@ -15,11 +15,11 @@ stdenv.mkDerivation rec {
 
   propagatedBuildInputs = [ jdk ];
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Build tooling for Clojure";
     homepage = http://boot-clj.com/;
-    license = stdenv.lib.licenses.epl10;
-    platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
-    maintainers = [ stdenv.lib.maintainers.ragge ];
+    license = licenses.epl10;
+    platforms = platforms.linux ++ platforms.darwin;
+    maintainers = with maintainers; [ ragge ];
   };
 }