haskell: simplify ghcjs-dom expression for GHCJS

This commit is contained in:
Charles Strahan 2015-04-09 15:00:52 -04:00
parent ed30c8ba40
commit b5f63776a0

View File

@ -95,16 +95,7 @@ self: super: {
''; '';
}); });
"ghcjs-dom" = self.callPackage ghcjs-dom = overrideCabal super.ghcjs-dom (drv: {
({ mkDerivation, base, mtl, text, ghcjs-base buildDepends = [ self.base self.mtl self.text self.ghcjs-base ];
}: });
mkDerivation {
pname = "ghcjs-dom";
version = "0.1.1.3";
sha256 = "0pdxb2s7fflrh8sbqakv0qi13jkn3d0yc32xhg2944yfjg5fvlly";
buildDepends = [ base mtl text ghcjs-base ];
description = "DOM library that supports both GHCJS and WebKitGTK";
license = pkgs.stdenv.lib.licenses.mit;
hydraPlatforms = pkgs.stdenv.lib.platforms.none;
}) {};
} }