about summary refs log tree commit diff
path: root/pkgs/development/misc/resholve/source.nix
blob: f2d431d37ef863da1459d1f4008b173803e67c91 (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.6.9";
  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-y9O5w4wA/kR8zoPay9pGs3vwxNqq3JEeZmX0wBJq4UQ=";
      };
}