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

th-env: init at 0.1.1

parent 328b0c05
No related merge requests found
......@@ -609,6 +609,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "these" "1.1.1.1"
, callHackage "these-skinny" "0.7.5"
, callHackage "tf-random" "0.5"
, callHackage "th-env" "0.1.1"
, callHackage "th-expand-syns" "0.4.10.0"
, callHackage "th-extras" "0.0.0.6"
, callHackage "th-lift-instances" "0.1.20"
......
......@@ -845,6 +845,8 @@ final: prev: with pkgs.haskell.lib; {
tf-random = prev.callPackage (./pkgs/tf-random.nix) { };
th-env = prev.callPackage (./pkgs/th-env.nix) { };
th-expand-syns = prev.callPackage (./pkgs/th-expand-syns.nix) { };
th-extras = prev.callPackage (./pkgs/th-extras.nix) { };
......
{ mkDerivation
, base
, lib
, markdown-unlit
, template-haskell
, th-compat
}:
mkDerivation {
pname = "th-env";
version = "0.1.1";
sha256 = "fc01b166df6ba45f6ce157165eb786da208dbab41252fd81134f8ba02cf3f505";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base template-haskell th-compat ];
testHaskellDepends = [ base markdown-unlit ];
testToolDepends = [ markdown-unlit ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/dzhus/th-env#readme";
description = "Template Haskell splices that expand to an environment variable";
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