mirror of
https://codeberg.org/Codeberg/pages-server.git
synced 2024-11-18 10:29:43 +00:00
27 lines
444 B
Nix
27 lines
444 B
Nix
|
{
|
||
|
outputs = {
|
||
|
self,
|
||
|
nixpkgs,
|
||
|
flake-utils,
|
||
|
systems,
|
||
|
}:
|
||
|
flake-utils.lib.eachSystem (import systems)
|
||
|
(system: let
|
||
|
pkgs = import nixpkgs {
|
||
|
inherit system;
|
||
|
};
|
||
|
in {
|
||
|
devShells.default = pkgs.mkShell {
|
||
|
buildInputs = with pkgs; [
|
||
|
gcc
|
||
|
go
|
||
|
gofumpt
|
||
|
gopls
|
||
|
gotools
|
||
|
go-tools
|
||
|
sqlite-interactive
|
||
|
];
|
||
|
};
|
||
|
});
|
||
|
}
|