From 736adf75ff2bf0eb3c70539b7261e81f032be8c6 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Mon, 27 Jun 2022 18:00:42 -0700 Subject: ref(tools): top level module to manage all the tools Don't make it harder to maintain the flake.nix, just add the tools to this module and import it in the flake configuration. Change-Id: I62237b996b1c8319c48b9ca4a80e7a3062ef92ec Reviewed-on: https://cl.fcuny.net/c/world/+/588 Reviewed-by: Franck Cuny Tested-by: CI --- tools/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tools/default.nix 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; }; +}) -- cgit 1.4.1