2021-09-26 12:46:18 +00:00
|
|
|
{ fetchFromGitHub
|
|
|
|
, ...
|
|
|
|
}:
|
|
|
|
|
|
|
|
rec {
|
2022-04-15 01:41:22 +00:00
|
|
|
version = "0.8.0";
|
2021-09-26 12:46:18 +00:00
|
|
|
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}";
|
2022-04-15 01:41:22 +00:00
|
|
|
hash = "sha256-oWS4ZBPjgH2UvYmvHVVRcyl15r3VS964BmB89y9DGo8=";
|
2021-09-26 12:46:18 +00:00
|
|
|
};
|
|
|
|
}
|