haskell-compdata-param: new package, 0.8.0.2

Closes #4198
This commit is contained in:
Callum Rogers 2014-09-21 22:46:30 +01:00 committed by Mateusz Kowalczyk
parent 9b7a26843e
commit 837fef324d
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ cabal, compdata, HUnit, mtl, testFramework, testFrameworkHunit
, transformers
}:
cabal.mkDerivation (self: {
pname = "compdata-param";
version = "0.8.0.2";
sha256 = "0496i1vnawl7m7ymvf5hl3kxy352rnhxy2gni4xkfz36psnnr7fs";
buildDepends = [ compdata mtl transformers ];
testDepends = [
compdata HUnit mtl testFramework testFrameworkHunit transformers
];
meta = {
description = "Parametric Compositional Data Types";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -467,6 +467,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
then callPackage ../development/libraries/haskell/compdata {}
else null;
compdataParam = callPackage ../development/libraries/haskell/compdata-param {};
composition = callPackage ../development/libraries/haskell/composition {};
compressed = callPackage ../development/libraries/haskell/compressed {};