2021-11-26 16:52:39 +02:00
|
|
|
{ mkDerivation, base, filepath, hakyll, lib, time }:
|
2021-01-25 18:19:17 +02:00
|
|
|
mkDerivation {
|
|
|
|
pname = "site";
|
|
|
|
version = "0.1.0.0";
|
|
|
|
src = ./.;
|
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
2021-01-25 20:35:41 +02:00
|
|
|
executableHaskellDepends = [ base filepath hakyll time ];
|
2021-11-26 16:52:39 +02:00
|
|
|
license = lib.licenses.bsd3;
|
2021-01-25 18:19:17 +02:00
|
|
|
}
|