2662c1b538
Non-source changes: - drops `bash -n` style syntax checking for writeScript(Bin) to avoid breaking cross builds - add postResholve hook (supersedes unmerged pr #439997) - track testing changes in resholve
15 lines
230 B
Nix
15 lines
230 B
Nix
{
|
|
fetchFromGitHub,
|
|
...
|
|
}:
|
|
|
|
rec {
|
|
version = "0.10.7";
|
|
rSrc = fetchFromGitHub {
|
|
owner = "abathur";
|
|
repo = "resholve";
|
|
rev = "v${version}";
|
|
hash = "sha256-aUhxaxniGcmFAawUTXa5QrWUSpw5NUoJO5y4INk5mQU=";
|
|
};
|
|
}
|