haskell-largeword: update to version 1.1.0

The latest version of largeword needs "jailbreak" to fix inconsistent version
requirements within its own Cabal file:

  https://github.com/idontgetoutmuch/largeword/issues/6
This commit is contained in:
Peter Simons 2014-02-28 10:43:37 +01:00
parent 723f85d293
commit 849b16129c

View File

@ -1,15 +1,17 @@
{ cabal, HUnit, QuickCheck, testFramework, testFrameworkHunit
, testFrameworkQuickcheck2
{ cabal, binary, HUnit, QuickCheck, testFramework
, testFrameworkHunit, testFrameworkQuickcheck2
}:
cabal.mkDerivation (self: {
pname = "largeword";
version = "1.0.5";
sha256 = "0icwqwpn59xd0qfpaihvwz1waax617qqcl05jv9f26sjdr8688dl";
version = "1.1.0";
sha256 = "1xpyzgwhjz625jkr8ax21g8cdkrk89jknrx4nxscwfaw67rla8ja";
buildDepends = [ binary ];
testDepends = [
HUnit QuickCheck testFramework testFrameworkHunit
binary HUnit QuickCheck testFramework testFrameworkHunit
testFrameworkQuickcheck2
];
jailbreak = true;
meta = {
homepage = "https://github.com/idontgetoutmuch/largeword";
description = "Provides Word128, Word192 and Word256 and a way of producing other large words if required";