stockholm/tv/5pkgs/haskell/th-env/default.nix

11 lines
297 B
Nix
Raw Normal View History

2021-10-19 20:53:15 +00:00
{ mkDerivation, base, lib, template-haskell, text }:
2020-10-02 23:23:07 +00:00
mkDerivation {
pname = "th-env";
version = "1.0.0";
src = ./.;
libraryHaskellDepends = [ base template-haskell text ];
homepage = "https://stackoverflow.com/q/57635686";
license = "unknown";
2021-10-19 20:53:15 +00:00
hydraPlatforms = lib.platforms.none;
2020-10-02 23:23:07 +00:00
}