Initial commit

This commit is contained in:
2022-09-04 19:06:04 +02:00
commit 3f1e07e2fc
29 changed files with 1483 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
{ mkDerivation
, base
, containers
, filepath
, hakyll
, hakyll-contrib-tojnar
, pandoc
, lib
}:
mkDerivation {
pname = "hrob2022-krk-litvinov-cz";
version = "0.0.1";
# Keep the contents of the src/ directory and top-level .cabal file.
src = lib.sourceByRegex ./. [ "^src(/.+|$)" "[^/]+\.cabal$" ];
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base
containers
filepath
hakyll
hakyll-contrib-tojnar
pandoc
];
license = lib.licenses.mit;
}