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

th-reify-many: init at 0.1.10

parent 81f5e82b
Branches
Tags
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-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"
, callCabal2nix , callCabal2nix
......
...@@ -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-reify-many = prev.callPackage (./pkgs/th-reify-many.nix) { };
these = prev.callPackage (./pkgs/these.nix) { }; these = prev.callPackage (./pkgs/these.nix) { };
these-skinny = prev.callPackage (./pkgs/these-skinny.nix) { }; these-skinny = prev.callPackage (./pkgs/these-skinny.nix) { };
......
{ mkDerivation
, base
, containers
, lib
, mtl
, safe
, template-haskell
, th-expand-syns
}:
mkDerivation {
pname = "th-reify-many";
version = "0.1.10";
sha256 = "9d250e61242f2fb887dedc9d28c0141832ff256e63bebc2bf5abff81037be4a5";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
containers
mtl
safe
template-haskell
th-expand-syns
];
testHaskellDepends = [ base template-haskell ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/mgsloan/th-reify-many";
description = "Recurseively reify template haskell datatype info";
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