summaryrefslogtreecommitdiffstats
path: root/tv/5pkgs/haskell/th-env/default.nix
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2020-10-03 01:23:07 +0200
committertv <tv@krebsco.de>2020-10-03 01:23:07 +0200
commit74a6276be87fd307bddb7094caea6c2635f61b9d (patch)
treec18900733388a4fad0c15a6a80037315be0978f0 /tv/5pkgs/haskell/th-env/default.nix
parent260bcc495f87976c9a2a1ed6a7565c1eb2075c97 (diff)
tv th-env: init at 1.0.0
Diffstat (limited to 'tv/5pkgs/haskell/th-env/default.nix')
-rw-r--r--tv/5pkgs/haskell/th-env/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/tv/5pkgs/haskell/th-env/default.nix b/tv/5pkgs/haskell/th-env/default.nix
new file mode 100644
index 0000000..474a63b
--- /dev/null
+++ b/tv/5pkgs/haskell/th-env/default.nix
@@ -0,0 +1,10 @@
+{ mkDerivation, base, stdenv, template-haskell, text }:
+mkDerivation {
+ pname = "th-env";
+ version = "1.0.0";
+ src = ./.;
+ libraryHaskellDepends = [ base template-haskell text ];
+ homepage = "https://stackoverflow.com/q/57635686";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+}