haskell-test-framework: update to version 0.6.1

This commit is contained in:
Peter Simons 2012-08-27 11:29:11 +02:00
parent bf3e1b0013
commit 48c5ad011d
3 changed files with 3 additions and 27 deletions

View File

@ -1,22 +0,0 @@
{ cabal, ansiTerminal, ansiWlPprint, extensibleExceptions, hostname
, random, regexPosix, time, xml
}:
cabal.mkDerivation (self: {
pname = "test-framework";
version = "0.6";
sha256 = "1ah5q3fwd5dmh2zb4rphdpz7hs39m4g1khvxjjwfzwyd9pxiz723";
isLibrary = true;
isExecutable = true;
buildDepends = [
ansiTerminal ansiWlPprint extensibleExceptions hostname random
regexPosix time xml
];
meta = {
homepage = "http://batterseapower.github.com/test-framework/";
description = "Framework for running and organising tests, with HUnit and QuickCheck support";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})

View File

@ -4,8 +4,8 @@
cabal.mkDerivation (self: {
pname = "test-framework";
version = "0.5";
sha256 = "19zm9xdhyjhqi2ryd2gkwi7m92s88mmiw1b6b91hjfhfw3c1qlzz";
version = "0.6.1";
sha256 = "1rx2c3yckw50vrydswb61ngvp27yxcimm5q6jcyqpn16fpkvxijw";
isLibrary = true;
isExecutable = true;
buildDepends = [

View File

@ -1456,9 +1456,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
terminfo = callPackage ../development/libraries/haskell/terminfo {};
testFramework_0_6 = callPackage ../development/libraries/haskell/test-framework/0.6.nix {};
testFramework_0_5 = callPackage ../development/libraries/haskell/test-framework/0.5.nix {};
testFramework = self.testFramework_0_6;
testFramework = callPackage ../development/libraries/haskell/test-framework {};
testFrameworkHunit = callPackage ../development/libraries/haskell/test-framework-hunit {};