mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-12-18 15:23:11 +00:00
install go and gopls in nix flake devShell
This commit is contained in:
parent
acbdec0507
commit
3742aa3158
1 changed files with 9 additions and 6 deletions
15
flake.nix
15
flake.nix
|
@ -3,14 +3,15 @@
|
|||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
};
|
||||
outputs =
|
||||
{ nixpkgs, flake-utils, ... }:
|
||||
outputs = {
|
||||
nixpkgs,
|
||||
flake-utils,
|
||||
...
|
||||
}:
|
||||
flake-utils.lib.eachDefaultSystem (
|
||||
system:
|
||||
let
|
||||
system: let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in
|
||||
{
|
||||
in {
|
||||
devShells.default = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
# generic
|
||||
|
@ -31,6 +32,8 @@
|
|||
# backend
|
||||
gofumpt
|
||||
sqlite
|
||||
go
|
||||
gopls
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue