
Also: - use nixfmt style for examples in README.md - drop passthru consumer test for ix removed in #397949
15 lines
230 B
Nix
15 lines
230 B
Nix
{
|
|
fetchFromGitHub,
|
|
...
|
|
}:
|
|
|
|
rec {
|
|
version = "0.10.6";
|
|
rSrc = fetchFromGitHub {
|
|
owner = "abathur";
|
|
repo = "resholve";
|
|
rev = "v${version}";
|
|
hash = "sha256-iJEkfW60QO4nFp+ib2+DeDRsZviYFhWRQoBw1VAhzJY=";
|
|
};
|
|
}
|