aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/default.nix b/default.nix
index 171a3a9..7078a01 100644
--- a/default.nix
+++ b/default.nix
@@ -18,20 +18,6 @@ in rec {
touch $out
'';
});
- dockerComposeLint = utils.baseTask.overrideAttrs (baseAttrs: {
- name = "${baseAttrs.name}-docker-compose-lint";
- buildInputs = baseAttrs.buildInputs ++ [ pkgs.docker-compose ];
- buildPhase = ''
- source .envrc
- # =docker-compose config= doesn't accept files with different names
- cp docker-compose.env.yaml docker-compose.yaml
- docker-compose config &> /dev/null || {
- echo "Invalid docker-compose.yml file."
- exit 1
- }
- touch $out
- '';
- });
shellBuildInputs = with pkgs; [
file
gitMinimal
@@ -48,7 +34,6 @@ in rec {
(utils.shellEnvironmentBuild subtasks.shellBuildInputs)
utils.formatNix
subtasks.formatTerraform
- subtasks.dockerComposeLint
];
shell = utils.shellEnvironment subtasks.shellBuildInputs;
}