summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/th-orphans/default.nix
blob: 6b6a971bf688d9c9ab71778cac6fe091d9000160 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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;
    maintainers = [ self.stdenv.lib.maintainers.simons ];
  };
})