Added complete yesod.

Some downgrades were necessary.

svn path=/nixpkgs/trunk/; revision=28364
This commit is contained in:
Andres Löh
2011-08-07 22:51:22 +00:00
parent 75dfd9d3c6
commit fd258d6fe1
35 changed files with 571 additions and 25 deletions

View File

@@ -0,0 +1,16 @@
{cabal, mtl, utf8Light, alex, happy} :
cabal.mkDerivation (self : {
pname = "language-javascript";
version = "0.4.5";
sha256 = "0rsggjpxsvaipkibhl90qcj2w2i16g53srbb54v0hajx2msmi0ci";
extraBuildInputs = [ alex happy ];
propagatedBuildInputs = [ mtl utf8Light ];
meta = {
homepage = "http://github.com/alanz/language-javascript";
description = "Parser for JavaScript";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})