mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 05:00:19 +00:00
14 lines
226 B
Nix
14 lines
226 B
Nix
{ fetchFromGitHub
|
|
, ...
|
|
}:
|
|
|
|
rec {
|
|
version = "0.9.1";
|
|
rSrc = fetchFromGitHub {
|
|
owner = "abathur";
|
|
repo = "resholve";
|
|
rev = "v${version}";
|
|
hash = "sha256-hkLKQKhEMD1UQ9EunPmx5Tsh44q4+tYj820OXF2ueUo=";
|
|
};
|
|
}
|