mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
4908b1a604
Also: - update README - expand passthru tests to cover packages that depend on resholve - drop temporary patches added to tests during bats update (so that PR didn't need to go through staging)
14 lines
227 B
Nix
14 lines
227 B
Nix
{ fetchFromGitHub
|
|
, ...
|
|
}:
|
|
|
|
rec {
|
|
version = "0.10.5";
|
|
rSrc = fetchFromGitHub {
|
|
owner = "abathur";
|
|
repo = "resholve";
|
|
rev = "v${version}";
|
|
hash = "sha256-SzJbA0wLeSwvXnAE4bTNqh0tnpFPkn6N1hp7sZGAkB4=";
|
|
};
|
|
}
|