3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
18 lines
586 B
Nix
18 lines
586 B
Nix
{ cabal, filepath, mtl, parsec, syb, WebBits, WebBitsHtml }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "JsContracts";
|
|
version = "0.5.3";
|
|
sha256 = "17l6kdpdc7lrpd9j4d2b6vklkpclshcjy6hzpi442b7pj96sn589";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ filepath mtl parsec syb WebBits WebBitsHtml ];
|
|
meta = {
|
|
homepage = "http://www.cs.brown.edu/research/plt/";
|
|
description = "Design-by-contract for JavaScript";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|