2012-02-14 18:00:37 +01:00
|
|
|
{ cabal, alex, Cabal, happy, mtl, utf8Light }:
|
2011-08-08 00:51:22 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-08 00:51:22 +02:00
|
|
|
pname = "language-javascript";
|
2012-02-15 11:39:20 +01:00
|
|
|
version = "0.4.8";
|
|
|
|
sha256 = "0zrvlr683r093v4nblxc4wcpb91gxw3y9a92dx02qi9v983pznf7";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-02-14 18:00:37 +01:00
|
|
|
buildDepends = [ Cabal mtl utf8Light ];
|
2011-08-10 01:00:20 +02:00
|
|
|
buildTools = [ alex happy ];
|
2011-08-08 00:51:22 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/alanz/language-javascript";
|
|
|
|
description = "Parser for JavaScript";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-10 01:00:20 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|