Use the non-obsolete devshell (#67)

This commit is contained in:
Patrick Stevens
2023-08-28 23:14:29 +01:00
committed by GitHub
parent c1865bb2f8
commit 6adb7dbf69

View File

@@ -78,19 +78,21 @@
program = "${self.packages.${system}.default}/bin/Gitea.Declarative";
};
};
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
(with dotnetCorePackages;
combinePackages [
dotnet-sdk_7
dotnetPackages.Nuget
])
];
packages = [
pkgs.alejandra
pkgs.nodePackages.markdown-link-check
pkgs.shellcheck
];
devShells = {
default = pkgs.mkShell {
buildInputs = with pkgs; [
(with dotnetCorePackages;
combinePackages [
dotnet-sdk_7
dotnetPackages.Nuget
])
];
packages = [
pkgs.alejandra
pkgs.nodePackages.markdown-link-check
pkgs.shellcheck
];
};
};
});
}