summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/type-equality/default.nix
blob: 2f7031c66336daacbfcb1b1eadbdbda7b133e506 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ cabal, Cabal }:

cabal.mkDerivation (self: {
  pname = "type-equality";
  version = "0.1.0.2";
  sha256 = "09m6vc5hglf3xdg0bg9lgbkgjffmbkfgcrqf5ii36l92c4dik32q";
  buildDepends = [ Cabal ];
  noHaddock = true;
  meta = {
    homepage = "http://github.com/hesselink/type-equality/";
    description = "Type equality, coercion/cast and other operations";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})