haskell-compdata: add version 0.7.0.1

This commit is contained in:
John Wiegley
2014-05-23 16:54:46 +02:00
committed by Peter Simons
parent d7bc0de8c8
commit 34c6a26f5d
2 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{ cabal, deepseq, derive, HUnit, mtl, QuickCheck, testFramework
, testFrameworkHunit, testFrameworkQuickcheck2, thExpandSyns
, transformers
}:
cabal.mkDerivation (self: {
pname = "compdata";
version = "0.7.0.1";
sha256 = "0d511yjfydv43sr74ggz6pnqm0wqz2m9fgrxpl6avvj8p10va7h7";
buildDepends = [
deepseq derive mtl QuickCheck thExpandSyns transformers
];
testDepends = [
deepseq derive HUnit mtl QuickCheck testFramework
testFrameworkHunit testFrameworkQuickcheck2 thExpandSyns
transformers
];
meta = {
description = "Compositional Data Types";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})