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