Files
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

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