mirror of
				https://github.com/NotAShelf/nyxexprs.git
				synced 2025-10-31 11:02:37 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			374 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			374 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   lib,
 | |
|   alejandra,
 | |
|   ...
 | |
| }:
 | |
| alejandra.overrideAttrs (prev: {
 | |
|   pname = "alejandra-custom";
 | |
| 
 | |
|   patches =
 | |
|     (prev.patches or [])
 | |
|     ++ [./0001-no-ads.patch];
 | |
| 
 | |
|   doCheck = false;
 | |
| 
 | |
|   meta = {
 | |
|     description = "Custom build of Alejandra without ads & spaces around lists and attrsets";
 | |
|     mainProgram = "alejandra";
 | |
|     maintainers = [lib.maintainers.NotAShelf];
 | |
|   };
 | |
| })
 |