All checks were successful
deploy-pages Deployed in 13 seconds
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.
18 lines
525 B
Nix
18 lines
525 B
Nix
# SPDX-FileCopyrightText: 2024 Jan Tojnar
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
let
|
|
sources = import ./npins;
|
|
pkgs = import sources.nixpkgs { };
|
|
|
|
haskellPackages = pkgs.haskellPackages.override {
|
|
overrides = final: prev: {
|
|
hakyll-contrib-tojnar =
|
|
final.callPackage "${sources.hakyll-contrib-tojnar}/hakyll-contrib-tojnar.nix"
|
|
{ };
|
|
strom-roku2023-krk-litvinov-cz = final.callPackage ./site/strom-roku2023-krk-litvinov-cz.nix { };
|
|
};
|
|
};
|
|
in
|
|
haskellPackages.strom-roku2023-krk-litvinov-cz
|