about summary refs log tree commit diff
path: root/pkgs/development/misc/resholve/source.nix
blob: fc23352d5d674222f69f46848da931a08c7bf3f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ fetchFromGitHub
, ...
}:

rec {
  version = "0.8.3";
  rSrc =
    # local build -> `make ci`; `make clean` to restore
    # return to remote source
    # if builtins.pathExists ./.local
    # then ./.
    # else
      fetchFromGitHub {
        owner = "abathur";
        repo = "resholve";
        rev = "v${version}";
        hash = "sha256-HilYaHSMASYXNGoX9/QSP9mpspszksdUrxlkUB1yGHQ=";
      };
}