mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 22:23:15 +00:00
12 lines
223 B
Nix
12 lines
223 B
Nix
{ fetchFromGitHub }:
|
|
|
|
rec {
|
|
version = "4.1.9";
|
|
src = fetchFromGitHub {
|
|
owner = "NICMx";
|
|
repo = "Jool";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-sKrjn/XQANiXfkjNiFfvAkmONyQjVigFBKgcGkuIPs0=";
|
|
};
|
|
}
|