mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 06:21:11 +00:00 
			
		
		
		
	Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/8129 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: famfo <famfo@famfo.xyz> Co-committed-by: famfo <famfo@famfo.xyz>
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			298 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			28 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
 | |
|   ];
 | |
| }
 |