voc-web/voc-web.nix

12 lines
273 B
Nix

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