Skip to content

Commit 23a27ca

Browse files
committed
Mill to 1.0.6, increase state version
1 parent 5ac3510 commit 23a27ca

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

lib/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ in {
3232
++ [
3333
{
3434
nixpkgs.pkgs = pkgsBySystem system;
35-
system.stateVersion = "24.05";
35+
system.stateVersion = "25.05";
3636
boot.isContainer = true;
3737
}
3838
]
@@ -51,7 +51,7 @@ in {
5151
++ [
5252
{
5353
nixpkgs.pkgs = pkgsBySystem system;
54-
system.stateVersion = "24.05";
54+
system.stateVersion = "25.05";
5555
}
5656
../internal/vm.nix
5757
]

pkgs/mill1.nix

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,18 @@
44
fetchurl,
55
jre,
66
makeWrapper,
7-
which
7+
which,
88
}:
9-
109
stdenv.mkDerivation (finalAttrs: {
1110
pname = "mill";
12-
version = "1.0.3";
11+
version = "1.0.6";
1312

1413
src = fetchurl {
1514
url = "https://repo1.maven.org/maven2/com/lihaoyi/mill-dist/${finalAttrs.version}/mill-dist-${finalAttrs.version}.exe";
16-
hash = "sha256-T/Wl9A6iBt12so0SO+G8sfkiahyJp0/NqH7Rs1g2FSU=";
15+
hash = "sha256-skyHd8S+lYGzH62CHBbWD72q4ionp2WwYmXxlKYUawg=";
1716
};
1817

19-
nativeBuildInputs = [ makeWrapper which ];
18+
nativeBuildInputs = [makeWrapper which];
2019

2120
dontUnpack = true;
2221
dontConfigure = true;

0 commit comments

Comments
 (0)