mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
10 lines
220 B
Nix
10 lines
220 B
Nix
{ fetchzip }:
|
|
|
|
rec {
|
|
version = "3.4.5";
|
|
src = fetchzip {
|
|
url = "https://github.com/NICMx/releases/raw/master/Jool/Jool-${version}.zip";
|
|
sha256 = "045j3ax6c5jg8037hhrbgqgznr0a114xrmn03wkasnvsxpsx4hkb";
|
|
};
|
|
}
|