Initial commit
This commit is contained in:
31
hrob2022-krk-litvinov-cz.nix
Normal file
31
hrob2022-krk-litvinov-cz.nix
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user