simiweb/simiweb.nix
2024-01-31 16:20:02 +01:00

11 lines
245 B
Nix

{ mkDerivation, base, hakyll, lib }:
mkDerivation {
pname = "simiweb";
version = "0.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base hakyll ];
license = "unknown";
mainProgram = "ssg";
}