2013-01-22 15:06:36 +00:00
|
|
|
{ cabal, comonad, tagged }:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "profunctors";
|
2013-03-29 12:30:50 +00:00
|
|
|
version = "3.3.0.1";
|
|
|
|
sha256 = "16d7xg929r4smmmcgi54bz7rsjxs6psksrdvzl4336sjpp3dw5h2";
|
2013-01-22 15:06:36 +00:00
|
|
|
buildDepends = [ comonad tagged ];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/ekmett/profunctors/";
|
|
|
|
description = "Haskell 98 Profunctors";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|