forked from mirrors/nixpkgs
haskell-th-orphans: add version 0.6
This commit is contained in:
parent
18e9e6832b
commit
c03160831b
14
pkgs/development/libraries/haskell/th-orphans/default.nix
Normal file
14
pkgs/development/libraries/haskell/th-orphans/default.nix
Normal 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;
|
||||
};
|
||||
})
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue