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

20 lines
402 B
Nix
Raw Normal View History

{ fetchFromGitHub
, ...
}:
rec {
2021-11-12 04:10:45 +01:00
version = "0.6.8";
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}";
2021-11-12 04:10:45 +01:00
hash = "sha256-1bb22GcOIzmQ31ULZuNNCJ8Vcz4Y0+qAhsJ9PhbqnDM=";
};
}