-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathoverlay.nix
More file actions
21 lines (19 loc) · 887 Bytes
/
overlay.nix
File metadata and controls
21 lines (19 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
final: prev: {
mill = let jre = final.jdk21; in
(prev.mill.override { inherit jre; }).overrideAttrs rec {
# Fixed the buggy sorting issue in target resolve
version = "0.12.8-1-46e216";
src = final.fetchurl {
url = "https://repo1.maven.org/maven2/com/lihaoyi/mill-dist/${version}/mill-dist-${version}-assembly.jar";
hash = "sha256-XNtl9NBQPlkYu/odrR/Z7hk3F01B6Rk4+r/8tMWzMm8=";
};
passthru = { inherit jre; };
};
espresso = final.callPackage ./nix/espresso.nix { };
softfloat = final.callPackage ./nix/softfloat.nix { };
testfloat = final.callPackage ./nix/testfloat.nix { };
submodules = final.callPackage ./nix/_sources/generated.nix { };
chisel = final.callPackage ./nix/chisel.nix { };
arithmetic = final.callPackage ./nix/arithmetic.nix { };
bump-arithmetic = final.callPackage ./nix/bump-arithmetic.nix { };
}