hakyll-skeleton/jfdic-web.nix
Fiscal Velvet Poet c28e591961
Initial commit
2021-11-04 19:23:31 +10:00

12 lines
275 B
Nix

{ mkDerivation, base, hakyll, stdenv }:
mkDerivation {
pname = "jfdic-web";
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base hakyll ];
license = "unknown";
hydraPlatforms = stdenv.lib.platforms.none;
}