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

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