nixpkgs/pkgs/development/libraries/haskell/comonad/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

16 lines
487 B
Nix

{ cabal, doctest, filepath, semigroups, transformers }:
cabal.mkDerivation (self: {
pname = "comonad";
version = "3.0.2";
sha256 = "0ryyifcxc5rmjrf9323zzj357709mah1hdsrnrbakd5ck7grjfay";
buildDepends = [ semigroups transformers ];
testDepends = [ doctest filepath ];
meta = {
homepage = "http://github.com/ekmett/comonad/";
description = "Haskell 98 compatible comonads";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})