cosmetic: re-generate expressions with cabal2nix

This commit is contained in:
Peter Simons 2014-04-04 23:19:52 +02:00
parent 7863956686
commit 070f071469
3 changed files with 3 additions and 4 deletions

@ -12,7 +12,6 @@ cabal.mkDerivation (self: {
HUnit ieee754 QuickCheck testFramework testFrameworkHunit
testFrameworkQuickcheck2 vector
];
# fails on i686 at version 0.1.5.2
doCheck = false;
meta = {
homepage = "https://github.com/bos/math-functions";

@ -1,5 +1,5 @@
{ cabal, base64Bytestring, blazeBuilder, filepath, hspec, random
, text, sendmail ? "sendmail"
, sendmail ? "sendmail", text
}:
cabal.mkDerivation (self: {
@ -10,7 +10,7 @@ cabal.mkDerivation (self: {
base64Bytestring blazeBuilder filepath random text
];
testDepends = [ blazeBuilder hspec text ];
configureFlags = [ "--ghc-option=-DMIME_MAIL_SENDMAIL_PATH=\"${sendmail}\"" ];
configureFlags = "--ghc-option=-DMIME_MAIL_SENDMAIL_PATH=\"${sendmail}\"";
meta = {
homepage = "http://github.com/snoyberg/mime-mail";
description = "Compose MIME email messages";

@ -12,6 +12,7 @@ cabal.mkDerivation (self: {
aeson attoparsec httpTypes HUnit shakespeareText testFramework
testFrameworkHunit testFrameworkThPrime text unorderedContainers
];
doCheck = false;
meta = {
homepage = "https://github.com/himura/twitter-types";
description = "Twitter JSON parser and types";
@ -19,5 +20,4 @@ cabal.mkDerivation (self: {
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
};
doCheck = false;
})