tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
boot: 2.5.2 -> 2.7.2
André Stylianos Ramos
8 years ago
8014307c
737b4660
+6
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
build-managers
boot
default.nix
+6
-6
pkgs/development/tools/build-managers/boot/default.nix
···
1
1
{ stdenv, fetchurl, jdk }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
-
version = "2.5.2";
4
4
+
version = "2.7.2";
5
5
name = "boot-${version}";
6
6
7
7
src = fetchurl {
8
8
url = "https://github.com/boot-clj/boot-bin/releases/download/${version}/boot.sh";
9
9
-
sha256 = "0brsimvmmpksxwc4l5c0x0cl5hhdjz76crd26yxphjvzyf7fypc9";
9
9
+
sha256 = "1hqp3xxmsj5vkym0l3blhlaq9g3w0lhjgmp37g6y3rr741znkk8c";
10
10
};
11
11
12
12
inherit jdk;
···
15
15
16
16
propagatedBuildInputs = [ jdk ];
17
17
18
18
-
meta = {
18
18
+
meta = with stdenv.lib; {
19
19
description = "Build tooling for Clojure";
20
20
homepage = http://boot-clj.com/;
21
21
-
license = stdenv.lib.licenses.epl10;
22
22
-
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
23
23
-
maintainers = [ stdenv.lib.maintainers.ragge ];
21
21
+
license = licenses.epl10;
22
22
+
platforms = platforms.linux ++ platforms.darwin;
23
23
+
maintainers = with maintainers; [ ragge ];
24
24
};
25
25
}