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

cabal.mkDerivation (self: {
  pname = "th-orphans";
  version = "0.6";
  sha256 = "1ablf4c8vp9kzvr75ngl5yz3ip5klk6zmq7bcqcvks758b9c6qgj";
  buildDepends = [ thLift ];
  noHaddock = true;
  meta = {
    description = "Orphan instances for TH datatypes";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})