summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/WebBits-Html/1.0.2.nix
blob: 26f14a08774812ec350ec94ca71ae910724a278c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, mtl, parsec, syb, WebBits }:

cabal.mkDerivation (self: {
  pname = "WebBits-Html";
  version = "1.0.2";
  sha256 = "18dd52970cd27kra4l89vvrx2mrdbqd4w4f76xrq3142daxsagal";
  buildDepends = [ mtl parsec syb WebBits ];
  meta = {
    homepage = "http://www.cs.brown.edu/research/plt/";
    description = "JavaScript analysis tools";
    license = "LGPL";
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})