forked from mirrors/nixpkgs
haskell-comonad: update to version 4.0
This commit is contained in:
parent
40ad6ff9b3
commit
48c44876ae
|
@ -1,14 +1,18 @@
|
|||
{ cabal, doctest, filepath, semigroups, tagged, transformers }:
|
||||
{ cabal, contravariant, distributive, doctest, filepath, mtl
|
||||
, semigroups, tagged, transformers
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "comonad";
|
||||
version = "3.1";
|
||||
sha256 = "0sl9b3f1vwpjdvnrxv7b8n512w05pv4in6qx3l4sbksdp1zjvcyv";
|
||||
buildDepends = [ semigroups tagged transformers ];
|
||||
version = "4.0";
|
||||
sha256 = "1f57wqxy1la59kippbj924prnj53a5hwc2ppg48n9xx2wfr63iha";
|
||||
buildDepends = [
|
||||
contravariant distributive mtl semigroups tagged transformers
|
||||
];
|
||||
testDepends = [ doctest filepath ];
|
||||
meta = {
|
||||
homepage = "http://github.com/ekmett/comonad/";
|
||||
description = "Haskell 98 compatible comonads";
|
||||
description = "Comonads";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue