10 lines
		
	
	
	
		
			207 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			207 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
let
 | 
						|
  pkgs = import <unstable> {};
 | 
						|
in pkgs.mkShell {
 | 
						|
  buildInputs = with pkgs; [
 | 
						|
    (haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
 | 
						|
      hpkgs.quickcheck-simple
 | 
						|
      hpkgs.checkers
 | 
						|
    ]))
 | 
						|
  ];
 | 
						|
}
 |