nixpkgs/pkgs/development/misc/resholve/source.nix
2021-09-27 16:01:09 +09:00

19 lines
402 B
Nix

{ fetchFromGitHub
, ...
}:
rec {
version = "0.6.6";
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-bupf3c9tNPAEMzFEDcvg483bSiwZFuB3ZqveG89dgkE=";
};
}