haskell-hspec-meta: add version 1.4.4

This commit is contained in:
Peter Simons
2013-02-24 22:11:11 +01:00
parent 52c8f2a8f6
commit cc43390065
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{ cabal, ansiTerminal, filepath, hspecExpectations, HUnit
, QuickCheck, setenv, silently, time, transformers
}:
cabal.mkDerivation (self: {
pname = "hspec-meta";
version = "1.4.4";
sha256 = "1p1miiaa38rd92bz695znlwd6wyvs8zpp2idyw5pkzvhqi8w10a1";
isLibrary = true;
isExecutable = true;
buildDepends = [
ansiTerminal filepath hspecExpectations HUnit QuickCheck setenv
silently time transformers
];
doCheck = false;
meta = {
homepage = "http://hspec.github.com/";
description = "A version of Hspec which is used to test Hspec itself";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})