- cereal: updated to version 0.3.5.2 - leksah-server: updated to version 0.12.1.1 - repa-algorithms: updated to version 3.2.1.1 - repa-examples: updated to version 3.2.1.1 - repa-io: updated to version 3.2.1.1 - repa: updated to version 3.2.1.1 - RepLib: updated to version 0.5.3 - unbound: updated to version 0.4.1 svn path=/nixpkgs/trunk/; revision=34366
		
			
				
	
	
		
			16 lines
		
	
	
		
			495 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			495 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ cabal, mtl, typeEquality }:
 | 
						|
 | 
						|
cabal.mkDerivation (self: {
 | 
						|
  pname = "RepLib";
 | 
						|
  version = "0.5.3";
 | 
						|
  sha256 = "1kpd4qli6fclrr3i21kmdwbpa0la7ssi9pgagzclr3yj2ca2hsgw";
 | 
						|
  buildDepends = [ mtl typeEquality ];
 | 
						|
  meta = {
 | 
						|
    homepage = "http://code.google.com/p/replib/";
 | 
						|
    description = "Generic programming library with representation types";
 | 
						|
    license = self.stdenv.lib.licenses.bsd3;
 | 
						|
    platforms = self.ghc.meta.platforms;
 | 
						|
    maintainers = [ self.stdenv.lib.maintainers.andres ];
 | 
						|
  };
 | 
						|
})
 |