From 8ebba31010a39b7a0a246840a92f4f57d759e498 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 3 Nov 2023 10:35:35 +0100 Subject: [PATCH] make terraform hallal --- devShells/flake-module.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/devShells/flake-module.nix b/devShells/flake-module.nix index e30a625..e39faa3 100644 --- a/devShells/flake-module.nix +++ b/devShells/flake-module.nix @@ -2,6 +2,7 @@ perSystem = { inputs' , pkgs + , lib , ... }: { devShells.default = pkgs.mkShellNoCC { @@ -11,13 +12,15 @@ inputs'.clan-core.packages.clan-cli - (pkgs.terraform.withPlugins (p: [ + ((pkgs.terraform.withPlugins (p: [ p.hetznerdns p.hcloud p.null p.external p.local - ])) + ])).overrideAttrs (old: { + meta = old.meta // { license = lib.licenses.free; }; + })) ]; inputsFrom = [ inputs'.clan-core.devShells.default