1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-30 01:20:40 +00:00
nixpkgs/pkgs/development/libraries/haskell/adjunctions/default.nix
2014-01-30 08:32:38 +01:00

20 lines
605 B
Nix

{ 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;
};
})