upgrade haskell package haste-compiler to 0.4.3 and fix compilation

This commit is contained in:
karsten gebbert 2014-10-26 12:47:56 +01:00 committed by Cray Elliott
parent 31a61b7151
commit 642d388ae1

View File

@ -2,26 +2,26 @@
{ cabal, binary, blazeBuilder, bzlib, dataBinaryIeee754 { cabal, binary, blazeBuilder, bzlib, dataBinaryIeee754
, dataDefault, either, filepath, ghcPaths, HTTP, monadsTf, mtl , dataDefault, either, filepath, ghcPaths, HTTP, monadsTf, mtl
, network, random, shellmate, systemFileio, tar, transformers , network, networkUri, random, shellmate, systemFileio, tar
, utf8String, websockets , transformers, utf8String, websockets
}: }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "haste-compiler"; pname = "haste-compiler";
version = "0.4.2"; version = "0.4.3";
sha256 = "0agbd21c7mgzxyg6lwjl3n8w2r7xcrv3811y0x86rg7q1m7z730m"; sha256 = "1wkb6a1jwmpjr0jlz5fjq652jz6a6agg0a5pfazyfpdznvd4mm62";
isLibrary = true; isLibrary = true;
isExecutable = true; isExecutable = true;
noHaddock = true;
buildDepends = [ buildDepends = [
binary blazeBuilder bzlib dataBinaryIeee754 dataDefault either binary blazeBuilder bzlib dataBinaryIeee754 dataDefault either
filepath ghcPaths HTTP monadsTf mtl network random shellmate filepath ghcPaths HTTP monadsTf mtl network networkUri random
systemFileio tar transformers utf8String websockets shellmate systemFileio tar transformers utf8String websockets
]; ];
meta = { meta = {
homepage = "http://github.com/valderman/haste-compiler"; homepage = "http://haste-lang.org/";
description = "Haskell To ECMAScript compiler"; description = "Haskell To ECMAScript compiler";
license = self.stdenv.lib.licenses.bsd3; license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms; platforms = self.ghc.meta.platforms;
broken = true;
}; };
}) })