504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
13 lines
226 B
Nix
13 lines
226 B
Nix
{ fetchFromGitHub
|
|
, ...
|
|
}:
|
|
|
|
rec {
|
|
version = "0.9.1";
|
|
rSrc = fetchFromGitHub {
|
|
owner = "abathur";
|
|
repo = "resholve";
|
|
rev = "v${version}";
|
|
hash = "sha256-hkLKQKhEMD1UQ9EunPmx5Tsh44q4+tYj820OXF2ueUo=";
|
|
};
|
|
}
|