nix: remove deprecated flake attributes
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Bruno BELANYI 2022-06-20 14:46:37 +02:00
parent 3e3cc71043
commit 588d2b3f21
1 changed files with 9 additions and 7 deletions

View File

@ -61,15 +61,17 @@
};
};
devShell = pkgs.mkShell {
name = "blog";
devShells = {
default = pkgs.mkShell {
name = "blog";
buildInputs = with pkgs; [
gnumake
hugo
];
buildInputs = with pkgs; [
gnumake
hugo
];
inherit (self.checks.${system}.pre-commit) shellHook;
inherit (self.checks.${system}.pre-commit) shellHook;
};
};
}
);