This commit is contained in:
Valentin Gagarin 2024-10-11 13:42:46 +02:00
parent aeb2b1990d
commit 959adebff1
2 changed files with 3 additions and 3 deletions

View file

@ -9,10 +9,10 @@
, ,
}: }:
let let
lib' = pkgs.callPackage ./lib.nix { }; site = pkgs.callPackage ./site.nix { };
in in
{ {
site = lib'.site "fediversity.eu" ./content; build = site.build "fediversity.eu" ./content;
shell = pkgs.mkShellNoCC { shell = pkgs.mkShellNoCC {
packages = with pkgs; [ packages = with pkgs; [

View file

@ -6,7 +6,7 @@ rec {
/** /**
Build the web site Build the web site
*/ */
site = name: dir: build = name: dir:
let let
script = '' script = ''
mkdir $out mkdir $out