mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 03:15:56 +03:00
20 lines
402 B
Nix
20 lines
402 B
Nix
{ fetchFromGitHub
|
|
, ...
|
|
}:
|
|
|
|
rec {
|
|
version = "0.8.1";
|
|
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-EVrv4Lj9GQa3g18BRQjC0wCxzsfsn4Ka1iq5Ouu1cII=";
|
|
};
|
|
}
|