3
0
Fork 0
forked from mirrors/nixpkgs

haskell-ghcjs-dom: add version 0.0.4

This commit is contained in:
Peter Simons 2014-03-11 13:28:07 +01:00
parent b46aac7d79
commit 27247b0325
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ cabal, glib, gtk3, mtl, transformers, webkitgtk3 }:
cabal.mkDerivation (self: {
pname = "ghcjs-dom";
version = "0.0.4";
sha256 = "1a3dv2l3s3aifcpivmnv308k2a1kb7r4x0z9gi83wc4xr9a8f08w";
buildDepends = [ glib gtk3 mtl transformers webkitgtk3 ];
meta = {
description = "DOM library that supports both GHCJS and WebKitGTK";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1141,6 +1141,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
cabal = self.cabal.override { enableLibraryProfiling = false; }; # pkg cannot be built with profiling enabled
};
ghcjsDom = callPackage ../development/libraries/haskell/ghcjs-codemirror {};
ghcMod = callPackage ../development/libraries/haskell/ghc-mod {
inherit (pkgs) emacs;
};