summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/profunctors/default.nix
blob: 7146359eda4064fd18c1421fe5317aa5f93b731f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal, comonad, tagged }:

cabal.mkDerivation (self: {
  pname = "profunctors";
  version = "3.2";
  sha256 = "0c7242pk5hfz67cwjy0l7skqyz20akw9j2w7cb8iggcbbb27bgyc";
  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;
  };
})