nixpkgs/pkgs/development/misc/resholve/source.nix

20 lines
402 B
Nix
Raw Normal View History

{ fetchFromGitHub
, ...
}:
rec {
2022-01-20 07:36:21 +01:00
version = "0.6.9";
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-01-20 07:36:21 +01:00
hash = "sha256-y9O5w4wA/kR8zoPay9pGs3vwxNqq3JEeZmX0wBJq4UQ=";
};
}