tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ammonite: 2.4.0 -> 2.4.1
R. Ryantm
4 years ago
ed35f91e
a6b0f5af
+6
-18
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
ammonite
default.nix
+6
-18
pkgs/development/tools/ammonite/default.nix
···
1
-
{ lib
2
-
, stdenv
3
-
, fetchurl
4
-
, jre
5
-
, writeScript
6
-
, common-updater-scripts
7
-
, git
8
-
, nixfmt
9
-
, nix
10
-
, coreutils
11
-
, gnused
12
-
, disableRemoteLogging ? true
13
-
}:
14
15
with lib;
16
···
20
common = { scalaVersion, sha256 }:
21
stdenv.mkDerivation rec {
22
pname = "ammonite";
23
-
version = "2.4.0";
24
25
src = fetchurl {
26
url =
···
91
maintainers = [ maintainers.nequissimus ];
92
};
93
};
94
-
in
95
-
{
96
ammonite_2_12 = common {
97
scalaVersion = "2.12";
98
-
sha256 = "K8JII6SAmnBjMWQ9a3NqSLLuP1OLcbwobj3G+OCiLdA=";
99
};
100
ammonite_2_13 = common {
101
scalaVersion = "2.13";
102
-
sha256 = "2F35qhWI6hNb+Eh9ZTDznqo116yN7MZIGVchaAIM36A=";
103
};
104
}
···
1
+
{ lib, stdenv, fetchurl, jre, writeScript, common-updater-scripts, git, nixfmt
2
+
, nix, coreutils, gnused, disableRemoteLogging ? true }:
0
0
0
0
0
0
0
0
0
0
0
3
4
with lib;
5
···
9
common = { scalaVersion, sha256 }:
10
stdenv.mkDerivation rec {
11
pname = "ammonite";
12
+
version = "2.4.1";
13
14
src = fetchurl {
15
url =
···
80
maintainers = [ maintainers.nequissimus ];
81
};
82
};
83
+
in {
0
84
ammonite_2_12 = common {
85
scalaVersion = "2.12";
86
+
sha256 = "5n9q/7d/PwDJfBPITYyDua24+fci6bi1oG5dSw8A244=";
87
};
88
ammonite_2_13 = common {
89
scalaVersion = "2.13";
90
+
sha256 = "RIuNyWvwNM39/rczUH328K5ky5hePflokW/VP603j+I=";
91
};
92
}