5dd0d85528
- haskell-src-exts: updated to version 1.13.3 - MemoTrie: updated to version 0.5 - semigroups: updated to version 0.8.3.2 - tagged: updated to version 0.4.2.1 - vector-space: updated to version 0.8.1 - WebBits: updated to version 2.2 svn path=/nixpkgs/trunk/; revision=34060
16 lines
465 B
Nix
16 lines
465 B
Nix
{ cabal, mtl, parsec, syb }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "WebBits";
|
|
version = "2.2";
|
|
sha256 = "1frmnjbpgm76dzs1p4766fb6isqc3pxv4dnj8sdhnfliv5j0xv2z";
|
|
buildDepends = [ mtl parsec syb ];
|
|
meta = {
|
|
homepage = "http://github.com/brownplt/webbits";
|
|
description = "JavaScript analysis tools";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|