rauhala.info/site/default.nix

11 lines
269 B
Nix
Raw Normal View History

2021-01-25 20:35:41 +02:00
{ mkDerivation, base, filepath, hakyll, stdenv, 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 ];
license = stdenv.lib.licenses.bsd3;
}