rauhala.info/site/default.nix

11 lines
259 B
Nix
Raw Permalink Normal View History

2021-11-26 16:52:39 +02:00
{ mkDerivation, base, filepath, hakyll, lib, time }:
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;
}