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

cabal.mkDerivation (self: {
  pname = "TypeCompose";
  version = "0.9.9";
  sha256 = "0i89r1yaglkcc1fdhn0m4hws5rqcpmkg32ddznch7a3rz1l9gqwg";
  meta = {
    homepage = "https://github.com/conal/TypeCompose";
    description = "Type composition classes & instances";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.ianwookim ];
  };
})