parent
9b7a26843e
commit
837fef324d
2 changed files with 20 additions and 0 deletions
|
@ -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;
|
||||
};
|
||||
})
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue