about summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tools/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/default.nix b/tools/default.nix
new file mode 100644
index 0000000..c599bc2
--- /dev/null
+++ b/tools/default.nix
@@ -0,0 +1,10 @@
+{ pkgs }:
+pkgs.lib.makeScope pkgs.newScope (pkgs: {
+  dnsupdate = pkgs.callPackage ./dnsupdate { inherit pkgs; };
+
+  govanity = pkgs.callPackage ./govanity { inherit pkgs; };
+
+  ipconverter = pkgs.callPackage ./ipconverter { inherit pkgs; };
+
+  git-blame-stats = pkgs.callPackage ./git-blame-stats { inherit pkgs; };
+})