mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	Remove linters from the repository that are not used. This also removes the Python setup as it was only used for those linters. Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7680 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: Lucas Dohmen <lucas@dohmen.io> Co-committed-by: Lucas Dohmen <lucas@dohmen.io>
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			703 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			703 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   inputs = {
 | |
|     nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
 | |
|     flake-utils.url = "github:numtide/flake-utils";
 | |
|   };
 | |
|   outputs = {
 | |
|     nixpkgs,
 | |
|     flake-utils,
 | |
|     ...
 | |
|   }:
 | |
|     flake-utils.lib.eachDefaultSystem (
 | |
|       system: let
 | |
|         pkgs = nixpkgs.legacyPackages.${system};
 | |
|       in {
 | |
|         devShells.default = pkgs.mkShell {
 | |
|           buildInputs = with pkgs; [
 | |
|             # generic
 | |
|             git
 | |
|             git-lfs
 | |
|             gnumake
 | |
|             gnused
 | |
|             gnutar
 | |
|             gzip
 | |
| 
 | |
|             # frontend
 | |
|             nodejs_20
 | |
| 
 | |
|             # backend
 | |
|             gofumpt
 | |
|             sqlite
 | |
|             go
 | |
|             gopls
 | |
|           ];
 | |
|         };
 | |
|       }
 | |
|     );
 | |
| }
 |