{ pkgs ? import { }, }: let inherit (pkgs) lib; in pkgs.mkShell { name = "forgejo"; packages = with pkgs; [ gnumake go golangci-lint gofumpt nodejs nodePackages.npm ]; LD_LIBRARY_PATH = lib.makeLibraryPath ( with pkgs; [ libuuid ] ); }