mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
10 lines
220 B
Nix
10 lines
220 B
Nix
{ fetchzip }:
|
|
|
|
rec {
|
|
version = "3.5.0";
|
|
src = fetchzip {
|
|
url = "https://github.com/NICMx/releases/raw/master/Jool/Jool-${version}.zip";
|
|
sha256 = "06jp6gpfryn66q0z4w3gwkvfr17bcrjvys597nj49pxfiz4vczb2";
|
|
};
|
|
}
|