summaryrefslogtreecommitdiffstats
path: root/tv/5pkgs/haskell/th-env/default.nix
blob: 158fb165a2e49363f36bb9d17c0961cedbace406 (plain)
1
2
3
4
5
6
7
8
9
10
{ mkDerivation, base, lib, 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 = lib.platforms.none;
}