File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 33 stdenvNoCC ,
44 clangStdenv ,
55 fetchFromGitHub ,
6+ fetchurl ,
67 mill ,
78 which ,
89} :
910
1011let
1112 # we need to lock the mill version, because an update will change the
1213 # fetched internal dependencies, thus breaking the deps FOD
13- lockedMill = mill . overrideAttrs ( oldAttrs : {
14+ lockedMill = mill . overrideAttrs ( oldAttrs : rec {
1415 # should ideally match the version listed inside the `.mill-version` file of the source
1516 version = "0.11.12" ;
16- src = oldAttrs . src . overrideAttrs {
17- outputHash = "sha256-k4/oMHvtq5YXY8hRlX4gWN16ClfjXEAn6mRIoEBHNJo=" ;
17+ src = fetchurl {
18+ url = "https://github.com/com-lihaoyi/mill/releases/download/${ version } /${ version } -assembly" ;
19+ hash = "sha256-k4/oMHvtq5YXY8hRlX4gWN16ClfjXEAn6mRIoEBHNJo=" ;
1820 } ;
1921 } ) ;
2022in
You can’t perform that action at this time.
0 commit comments