8d28093ffb
GitOrigin-RevId: 31ffc50c571e6683e9ecc9dbcbd4a8e9914b4497
19 lines
402 B
Nix
19 lines
402 B
Nix
{ fetchFromGitHub
|
|
, ...
|
|
}:
|
|
|
|
rec {
|
|
version = "0.6.0";
|
|
rSrc =
|
|
# local build -> `make ci`; `make clean` to restore
|
|
# return to remote source
|
|
# if builtins.pathExists ./.local
|
|
# then ./.
|
|
# else
|
|
fetchFromGitHub {
|
|
owner = "abathur";
|
|
repo = "resholve";
|
|
rev = "v${version}";
|
|
hash = "sha256-GfhhU9f5kiYcuYTPKWXCIkAGsz7GhAUGjAmIZ8Ww5X4=";
|
|
};
|
|
}
|