11 lines
		
	
	
	
		
			233 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			233 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
let
 | 
						|
  pkgs = import /home/wpcarro/nixpkgs {};
 | 
						|
in pkgs.mkShell {
 | 
						|
  buildInputs = with pkgs; [
 | 
						|
    (haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
 | 
						|
      hspec
 | 
						|
      optparse-applicative
 | 
						|
      unordered-containers
 | 
						|
    ]))
 | 
						|
  ];
 | 
						|
}
 |