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

th-utilities: init at 0.2.5.0

parent 58c69adf
No related merge requests found
......@@ -792,6 +792,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "th-lift" "0.8.2"
, callHackage "th-orphans" "0.13.14"
, callHackage "th-reify-many" "0.1.10"
, callHackage "th-utilities" "0.2.5.0"
, callHackage "tidal" "1.8.1"
, callHackage "timing-convenience" "0.1"
, callHackage "timeit" "2.0"
......
......@@ -1231,6 +1231,8 @@ self: with pkgs.haskell.lib; {
th-reify-many = self.callPackage (./pkgs/th-reify-many.nix) { };
th-utilities = self.callPackage (./pkgs/th-utilities.nix) { };
these = self.callPackage (./pkgs/these.nix) { };
these-skinny = self.callPackage (./pkgs/these-skinny.nix) { };
......
{ mkDerivation
, base
, bytestring
, containers
, directory
, filepath
, hspec
, lib
, primitive
, syb
, template-haskell
, text
, th-abstraction
, th-orphans
, vector
}:
mkDerivation {
pname = "th-utilities";
version = "0.2.5.0";
sha256 = "4a0742a525e0ef22c993f1b6b693312bddcefe3afed9b6c519372d82931b97e1";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
bytestring
containers
directory
filepath
primitive
syb
template-haskell
text
th-abstraction
th-orphans
];
testHaskellDepends = [
base
bytestring
containers
directory
filepath
hspec
primitive
syb
template-haskell
text
th-abstraction
th-orphans
vector
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/fpco/th-utilities#readme";
description = "Collection of useful functions for use with Template Haskell";
license = lib.licenses.mit;
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