haskell-adjunctions: add version 4.0.1

This commit is contained in:
Peter Simons 2014-01-30 08:32:38 +01:00
parent f93acdf3ac
commit d2a2a2628e
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ cabal, comonad, contravariant, distributive, free, mtl
, semigroupoids, semigroups, tagged, transformers, void
}:
cabal.mkDerivation (self: {
pname = "adjunctions";
version = "4.0.1";
sha256 = "0z13rmh9yp8jg2jzj3bmysqc4h2nblshx125h2sx51wllnvxzh5l";
buildDepends = [
comonad contravariant distributive free mtl semigroupoids
semigroups tagged transformers void
];
meta = {
homepage = "http://github.com/ekmett/adjunctions/";
description = "Adjunctions and representable functors";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -522,6 +522,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
abstractPar = callPackage ../development/libraries/haskell/abstract-par {};
adjunctions = callPackage ../development/libraries/haskell/adjunctions {};
aeson_0_6_2_1 = callPackage ../development/libraries/haskell/aeson/0.6.2.1.nix {};
aeson_0_7_0_0 = callPackage ../development/libraries/haskell/aeson/0.7.0.0.nix {};
aeson = self.aeson_0_6_2_1;