mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-06-18 15:15:18 +00:00
29 lines
298 B
Nix
29 lines
298 B
Nix
|
{
|
||
|
pkgs ? import <nixpkgs> { },
|
||
|
}:
|
||
|
|
||
|
pkgs.mkShell {
|
||
|
name = "forgejo";
|
||
|
nativeBuildInputs = with pkgs; [
|
||
|
# generic
|
||
|
git
|
||
|
git-lfs
|
||
|
gnumake
|
||
|
gnused
|
||
|
gnutar
|
||
|
gzip
|
||
|
|
||
|
# frontend
|
||
|
nodejs
|
||
|
|
||
|
# backend
|
||
|
gofumpt
|
||
|
sqlite
|
||
|
go
|
||
|
gopls
|
||
|
|
||
|
# tests
|
||
|
openssh
|
||
|
];
|
||
|
}
|