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;
};
})

View File

@ -416,6 +416,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
compactStringFix = callPackage ../development/libraries/haskell/compact-string-fix {};
compdata = callPackage ../development/libraries/haskell/compdata {};
composition = callPackage ../development/libraries/haskell/composition {};
concatenative = callPackage ../development/libraries/haskell/concatenative {};