blob: 474a63b8582bb1f0e94124f546041cf8783f1b26 (
plain)
1
2
3
4
5
6
7
8
9
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;
}
|