repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
typioca: 2.7.0 -> 2.8.0
[NixPkgs.git]
/
pkgs
/
development
/
misc
/
resholve
/
source.nix
blob
70182722bde46b1562a4a0eeef1a5110f04dc3c3
1
{ fetchFromGitHub
2
, ...
3
}:
4
5
rec {
6
version = "0.9.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-FRdCeeC2c3bMEXekEyilgW0PwFfUWGstZ5mXdmRPM5w=";
18
};
19
}