14 lines
		
	
	
	
		
			189 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			189 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   pkgs ? import <nixpkgs> { },
 | |
| }:
 | |
| {
 | |
|   shell = pkgs.mkShellNoCC {
 | |
|     packages = with pkgs; [
 | |
|       pandoc
 | |
|       texliveMedium
 | |
|       librsvg
 | |
|       mermaid-cli
 | |
|       plantuml
 | |
|     ];
 | |
|   };
 | |
| }
 |