about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/ghcjs-dom/default.nix
blob: 7ea85f2cb1f5e0797c583eafcc4a61ca757596af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ cabal, ghcjsBase, mtl }:

cabal.mkDerivation (self: {
  pname = "ghcjs-dom";
  version = "0.0.10";
  sha256 = "0xffr197m6qam4q7ckgcwl0v9kwrxa5fm894c9vyxdmlcjyn38rm";
  buildDepends = [ ghcjsBase mtl ];
  meta = {
    description = "DOM library that supports both GHCJS and WebKitGTK";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
  };
})