Files
strom-roku-2023.krk-litvino…/site/strom-roku2023-krk-litvinov-cz.nix
Jan Tojnar 98ce54f310
All checks were successful
deploy-pages Deployed in 13 seconds
Switch to npins & abandon haskell.nix
Flakes copy the whole gigantic repo to store all the time, quickly eating all the drive capacity.
haskell.nix is PITA to use on lower-spec devices.
2024-07-14 18:46:35 +02:00

40 lines
597 B
Nix

{ mkDerivation
, base
, containers
, directory
, extra
, filepath
, hakyll
, hakyll-contrib-tojnar
, pandoc
, process
, time
, lib
}:
mkDerivation {
pname = "strom-roku2023-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
directory
extra
filepath
hakyll
hakyll-contrib-tojnar
pandoc
process
time
];
license = lib.licenses.mit;
}