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

cabal.mkDerivation (self: {
  pname = "ghc-syb";
  version = "0.2.0.0";
  sha256 = "0052bd2ee4d92fbb010bebc7bcfd533a0b78437f1fb0834288ce979c103d9d67";
  meta = {
    homepage = "http://github.com/nominolo/ghc-syb";
    description = "Data and Typeable instances for the GHC API";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})