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

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

  propagatedBuildInputs = [ mtl parsec ];

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