3
0
Fork 0
forked from mirrors/nixpkgs

haskell-th-orphans: add version 0.6

This commit is contained in:
Peter Simons 2012-09-10 14:19:47 +02:00
parent 18e9e6832b
commit c03160831b
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,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;
};
})

View file

@ -1483,6 +1483,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
thLift = callPackage ../development/libraries/haskell/th-lift {};
thOrphans = callPackage ../development/libraries/haskell/th-orphans {};
threadmanager = callPackage ../development/libraries/haskell/threadmanager {};
time_1_1_2_4 = callPackage ../development/libraries/haskell/time/1.1.2.4.nix {};