Re-generate some Haskell expressions with cabal2nix.

This commit is contained in:
Peter Simons 2014-01-25 16:48:29 +01:00
parent 031c229cc0
commit 4230c95d56
3 changed files with 3 additions and 3 deletions

View file

@ -4,10 +4,10 @@ cabal.mkDerivation (self: {
pname = "atto-lisp";
version = "0.2.1.1";
sha256 = "089chx4g880fbs7gh1mcvfx2xgbqdi1dxdjax6vbw8xiqgw4pzac";
jailbreak = true;
buildDepends = [
attoparsec blazeBuilder blazeTextual deepseq text
];
jailbreak = true;
meta = {
homepage = "http://github.com/nominolo/atto-lisp";
description = "Efficient parsing and serialisation of S-Expressions";

View file

@ -5,7 +5,7 @@ cabal.mkDerivation (self: {
version = "1.0.3";
sha256 = "1v9cl7d4fcchbdrpbgjj4ilg79cj241vzijiifdsgkq30ikv2yxs";
buildDepends = [ terminalProgressBar time ];
noHaddock = true; # fails to build with a parse error
noHaddock = true;
meta = {
homepage = "http://github.com/acw/bytestring-progress";
description = "A library for tracking the consumption of a lazy ByteString";

View file

@ -18,6 +18,7 @@ cabal.mkDerivation (self: {
hseCpp mtl prettyShow tagged tasty tastyGolden traverseWithClass
uniplate utf8String
];
doCheck = false;
meta = {
homepage = "http://documentup.com/haskell-suite/haskell-names";
description = "Name resolution library for Haskell";
@ -25,5 +26,4 @@ cabal.mkDerivation (self: {
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
};
doCheck = false;
})