unpin terraform shell

This commit is contained in:
zowoq 2023-12-11 13:33:38 +10:00
parent 659ea8f2dd
commit 73e1cf8bf9
4 changed files with 3 additions and 44 deletions
terraform

View file

@ -1,11 +1,10 @@
{ inputs', ... }:
{ pkgs, ... }:
let
tf-pkgs = inputs'.tf-pkgs.legacyPackages;
terraform' = tf-pkgs.terraform.overrideAttrs (_: { meta = { }; });
terraform' = pkgs.terraform.overrideAttrs (_: { meta = { }; });
in
{
devShells = {
terraform = with tf-pkgs; mkShellNoCC {
terraform = with pkgs; mkShellNoCC {
packages = [
(terraform'.withPlugins (p: [
p.cloudflare