forked from mirrors/nixpkgs
haskell-ghcjs-dom: add version 0.0.4
This commit is contained in:
parent
b46aac7d79
commit
27247b0325
13
pkgs/development/libraries/haskell/ghcjs-dom/default.nix
Normal file
13
pkgs/development/libraries/haskell/ghcjs-dom/default.nix
Normal 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;
|
||||
};
|
||||
})
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue