summary refs log tree commit diff
path: root/pkgs/development/misc/resholve/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/misc/resholve/default.nix')
-rw-r--r--pkgs/development/misc/resholve/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/development/misc/resholve/default.nix b/pkgs/development/misc/resholve/default.nix
new file mode 100644
index 00000000000..7b5a79dd221
--- /dev/null
+++ b/pkgs/development/misc/resholve/default.nix
@@ -0,0 +1,9 @@
+{ callPackage
+, doCheck ? true
+}:
+
+rec {
+  resholve = callPackage ./resholve.nix { inherit doCheck; };
+  resholvePackage =
+    callPackage ./resholve-package.nix { inherit resholve; };
+}