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

cabal.mkDerivation (self: {
  pname = "type-equality";
  version = "0.1.2";
  sha256 = "06acqpkvyvalv5knjzzbgm40hzas6cdfsypvjxsbb0mhq4d80xwr";
  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 ];
  };
})