11 lines
245 B
Nix
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";
|
|
}
|