about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/WebBits/1.0.nix
blob: 530252017fbc6feb050fde578ee5c4c0cf6e75d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{cabal, mtl, parsec, syb}:

cabal.mkDerivation (self : {
  pname = "WebBits";
  version = "1.0";
  sha256 = "1xqk4ajywlaq9nb9a02i7c25na5p2qbpc2k9zw93gbapppjiapsc";

  propagatedBuildInputs = [ mtl parsec syb ];

  meta = {
    description = "WebBits is a collection of libraries for working with JavaScript.";
  };
})