diff options
author | tv <tv@krebsco.de> | 2020-10-03 01:23:07 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2020-10-03 01:23:07 +0200 |
commit | 0cbb18c16e17e220ec3a7d9a44da8f22f083dd48 (patch) | |
tree | 69c0d5521407339e0622cdbb4174447aa402d05f /tv/5pkgs/haskell/th-env/default.nix | |
parent | 2299f49864cd60b6eebca31eae727d3b0845916f (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.nix | 10 |
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 000000000..474a63b85 --- /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; +} |