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