- language-javascript: updated to version 0.5.4 - syb: updated to version 0.3.6.1 - yesod: updated to version 1.0.1.5 - zlib-enum: updated to version 0.2.2.1 svn path=/nixpkgs/trunk/; revision=33923
		
			
				
	
	
		
			17 lines
		
	
	
		
			564 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			564 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ cabal, blazeBuilder, happy, mtl, utf8Light, utf8String }:
 | 
						|
 | 
						|
cabal.mkDerivation (self: {
 | 
						|
  pname = "language-javascript";
 | 
						|
  version = "0.5.4";
 | 
						|
  sha256 = "0hjx12n3pkxcdkppqalv6sl68vjlib37gby89ksay807ndslvb9q";
 | 
						|
  buildDepends = [ blazeBuilder mtl utf8Light utf8String ];
 | 
						|
  buildTools = [ happy ];
 | 
						|
  meta = {
 | 
						|
    homepage = "http://github.com/alanz/language-javascript";
 | 
						|
    description = "Parser for JavaScript";
 | 
						|
    license = self.stdenv.lib.licenses.bsd3;
 | 
						|
    platforms = self.ghc.meta.platforms;
 | 
						|
    maintainers = [ self.stdenv.lib.maintainers.andres ];
 | 
						|
  };
 | 
						|
})
 |