3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
16 lines
468 B
Nix
16 lines
468 B
Nix
{ cabal, mtl, parsec, syb }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "WebBits";
|
|
version = "1.0";
|
|
sha256 = "1xqk4ajywlaq9nb9a02i7c25na5p2qbpc2k9zw93gbapppjiapsc";
|
|
buildDepends = [ mtl parsec syb ];
|
|
meta = {
|
|
homepage = "http://www.cs.brown.edu/research/plt/";
|
|
description = "JavaScript analysis tools";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|