nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 19 lines 402 B view raw
1{ fetchFromGitHub 2, ... 3}: 4 5rec { 6 version = "0.8.0"; 7 rSrc = 8 # local build -> `make ci`; `make clean` to restore 9 # return to remote source 10 # if builtins.pathExists ./.local 11 # then ./. 12 # else 13 fetchFromGitHub { 14 owner = "abathur"; 15 repo = "resholve"; 16 rev = "v${version}"; 17 hash = "sha256-oWS4ZBPjgH2UvYmvHVVRcyl15r3VS964BmB89y9DGo8="; 18 }; 19}