summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/JsContracts/default.nix
blob: 713e67fbf608cd30ae998560f3904246b9e42d4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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 ];
  };
})