summary refs log tree commit diff
path: root/pkgs/development/misc/resholve/source.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/misc/resholve/source.nix')
-rw-r--r--pkgs/development/misc/resholve/source.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/misc/resholve/source.nix b/pkgs/development/misc/resholve/source.nix
new file mode 100644
index 0000000000000..32ffeb98fd7e2
--- /dev/null
+++ b/pkgs/development/misc/resholve/source.nix
@@ -0,0 +1,19 @@
+{ fetchFromGitHub
+, ...
+}:
+
+rec {
+  version = "0.6.0";
+  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-GfhhU9f5kiYcuYTPKWXCIkAGsz7GhAUGjAmIZ8Ww5X4=";
+      };
+}