Skip to content
Snippets Groups Projects
Commit 033c799b authored by Daniel Firth's avatar Daniel Firth
Browse files

th-orphans: init at 0.13.14

parent b685ef27
No related merge requests found
...@@ -576,6 +576,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -576,6 +576,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "th-expand-syns" "0.4.10.0" , callHackage "th-expand-syns" "0.4.10.0"
, callHackage "th-extras" "0.0.0.6" , callHackage "th-extras" "0.0.0.6"
, callHackage "th-lift-instances" "0.1.20" , callHackage "th-lift-instances" "0.1.20"
, callHackage "th-orphans" "0.13.14"
, callHackage "th-reify-many" "0.1.10" , callHackage "th-reify-many" "0.1.10"
, callHackage "tidal" "1.8.1" , callHackage "tidal" "1.8.1"
, callHackage "time-compat" "1.9.6.1" , callHackage "time-compat" "1.9.6.1"
......
...@@ -779,6 +779,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -779,6 +779,8 @@ final: prev: with pkgs.haskell.lib; {
th-lift-instances = prev.callPackage (./pkgs/th-lift-instances.nix) { }; th-lift-instances = prev.callPackage (./pkgs/th-lift-instances.nix) { };
th-orphans = prev.callPackage (./pkgs/th-orphans.nix) { };
th-reify-many = prev.callPackage (./pkgs/th-reify-many.nix) { }; th-reify-many = prev.callPackage (./pkgs/th-reify-many.nix) { };
these = prev.callPackage (./pkgs/these.nix) { }; these = prev.callPackage (./pkgs/these.nix) { };
......
{ mkDerivation
, base
, bytestring
, ghc-prim
, hspec
, hspec-discover
, lib
, mtl
, template-haskell
, th-compat
, th-lift
, th-reify-many
}:
mkDerivation {
pname = "th-orphans";
version = "0.13.14";
sha256 = "9ddb2a1a0f6afeb8b6697256bfa5930f1f75e99624e370931c4b48bd16c3077c";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
mtl
template-haskell
th-compat
th-lift
th-reify-many
];
testHaskellDepends = [
base
bytestring
ghc-prim
hspec
template-haskell
th-lift
];
testToolDepends = [ hspec-discover ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Orphan instances for TH datatypes";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment