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"; program = "${self.packages.${system}.default}/bin/Gitea.Declarative";
}; };
}; };
devShell = pkgs.mkShell { devShells = {
buildInputs = with pkgs; [ default = pkgs.mkShell {
(with dotnetCorePackages; buildInputs = with pkgs; [
combinePackages [ (with dotnetCorePackages;
dotnet-sdk_7 combinePackages [
dotnetPackages.Nuget dotnet-sdk_7
]) dotnetPackages.Nuget
]; ])
packages = [ ];
pkgs.alejandra packages = [
pkgs.nodePackages.markdown-link-check pkgs.alejandra
pkgs.shellcheck pkgs.nodePackages.markdown-link-check
]; pkgs.shellcheck
];
};
}; };
}); });
} }