1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00
nixpkgs/pkgs/development/libraries/haskell/ghcjs-dom/default.nix
2014-03-22 09:04:44 +01:00

14 lines
379 B
Nix

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