haskell-criterion: downgrade to hastache 0.5.1 to fix the build

Closes <https://github.com/NixOS/nixpkgs/pull/2133>.
This commit is contained in:
Peter Simons 2014-04-07 11:54:38 +02:00
parent dfa2f5ab44
commit 53d7a1c882
3 changed files with 25 additions and 2 deletions

View file

@ -0,0 +1,19 @@
{ cabal, blazeBuilder, filepath, HUnit, ieee754, mtl, syb, text
, transformers, utf8String
}:
cabal.mkDerivation (self: {
pname = "hastache";
version = "0.5.1";
sha256 = "05lm7mjzc1hamxcj8akq06081bhp907hrjdkhas3wzm6ran6rwn3";
buildDepends = [
blazeBuilder filepath ieee754 mtl syb text transformers utf8String
];
testDepends = [ HUnit mtl syb text ];
meta = {
homepage = "http://github.com/lymar/hastache";
description = "Haskell implementation of Mustache templates";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -849,7 +849,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
cprngAes = callPackage ../development/libraries/haskell/cprng-aes {};
criterion = callPackage ../development/libraries/haskell/criterion {};
criterion = callPackage ../development/libraries/haskell/criterion {
hastache = self.hastache_0_5_1;
};
Crypto = callPackage ../development/libraries/haskell/Crypto {};
@ -1323,7 +1325,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
haskore = callPackage ../development/libraries/haskell/haskore {};
hastache = callPackage ../development/libraries/haskell/hastache {};
hastache_0_5_1 = callPackage ../development/libraries/haskell/hastache/0.5.1.nix {};
hastache_0_6_0 = callPackage ../development/libraries/haskell/hastache/0.6.0.nix {};
hastache = self.hastache_0_6_0;
heredoc = callPackage ../development/libraries/haskell/heredoc {};