nixpkgs/pkgs/development/misc/resholve/source.nix
2024-03-28 19:45:35 -05:00

14 lines
227 B
Nix

{ fetchFromGitHub
, ...
}:
rec {
version = "0.10.2";
rSrc = fetchFromGitHub {
owner = "abathur";
repo = "resholve";
rev = "v${version}";
hash = "sha256-QXIX3Ai9HUFosvhfYTUJILZ588cvxTzULUUp1LYkQ0A=";
};
}