1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/misc/resholve/source.nix
2023-12-01 05:49:28 +00:00

14 lines
226 B
Nix

{ fetchFromGitHub
, ...
}:
rec {
version = "0.9.1";
rSrc = fetchFromGitHub {
owner = "abathur";
repo = "resholve";
rev = "v${version}";
hash = "sha256-hkLKQKhEMD1UQ9EunPmx5Tsh44q4+tYj820OXF2ueUo=";
};
}