all repos — website @ 397ef49a967738fc0046ea9308f8fd7f1c447613

My website

Make buildable with nix (requires submodule workaround)
Alan Pearce alan@alanpearce.eu
Thu, 18 May 2023 20:52:18 +0200
commit

397ef49a967738fc0046ea9308f8fd7f1c447613

parent

83b0584d636cbfab9a81c03d2455424ddb885d1f

4 files changed, 40 insertions(+), 25 deletions(-)

jump to
M .gitignore.gitignore
@@ -1,3 +1,4 @@ /public/
 
 .direnv
+/result
M .gitmodules.gitmodules
@@ -1,3 +1,3 @@ [submodule "themes/bear"]
 	path = themes/bear
-	url = ssh://codeberg.org/alanpearce/zola-bearblog
+	url = ssh://git.alanpearce.eu/zola-bearblog
M MakefileMakefile
@@ -2,57 +2,61 @@ .SHELLFLAGS := -eu -o pipefail -c .ONESHELL:
 .DELETE_ON_ERROR:
 
+PREFIX ?= public
+
 brotli := brotli --force
 gzip := gzip --best --keep --force
 zstd := zstd --force --no-pass-through -19 --quiet
 
 build:
-	zola build
+	zola build --output-dir $(PREFIX)
 
-to_compress := $(shell fd . public --type=file -e html -e xml -e txt -e asc)
+to_compress := $(shell fd . $(PREFIX) --type=file -e html -e xml -e txt -e asc)
 brotli_files := $(patsubst %, %.br, $(to_compress))
 gzip_files := $(patsubst %, %.gz, $(to_compress))
 zstd_files := $(patsubst %, %.zst, $(to_compress))
 
-public/%.html.br: public/%.html
+${PREFIX}/%.html.br: ${PREFIX}/%.html
 	$(brotli) $<
 
-public/%.xml.br: public/%.xml
+${PREFIX}/%.xml.br: ${PREFIX}/%.xml
 	$(brotli) $<
 
-public/%.txt.br: public/%.txt
+${PREFIX}/%.txt.br: ${PREFIX}/%.txt
 	$(brotli) $<
 
-public/%.asc.br: public/%.asc
+${PREFIX}/%.asc.br: ${PREFIX}/%.asc
 	$(brotli) $<
 
-public/%.html.gz: public/%.html
+${PREFIX}/%.html.gz: ${PREFIX}/%.html
 	$(gzip) $<
 
-public/%.xml.gz: public/%.xml
+${PREFIX}/%.xml.gz: ${PREFIX}/%.xml
 	$(gzip) $<
 
-public/%.txt.gz: public/%.txt
+${PREFIX}/%.txt.gz: ${PREFIX}/%.txt
 	$(gzip) $<
 
-public/%.asc.gz: public/%.asc
+${PREFIX}/%.asc.gz: ${PREFIX}/%.asc
 	$(gzip) $<
 
-public/%.html.zst: public/%.html
+${PREFIX}/%.html.zst: ${PREFIX}/%.html
 	$(zstd) $<
 
-public/%.xml.zst: public/%.xml
+${PREFIX}/%.xml.zst: ${PREFIX}/%.xml
 	$(zstd) $<
 
-public/%.txt.zst: public/%.txt
+${PREFIX}/%.txt.zst: ${PREFIX}/%.txt
 	$(zstd) $<
 
-public/%.asc.zst: public/%.asc
+${PREFIX}/%.asc.zst: ${PREFIX}/%.asc
 	$(zstd) $<
 
 compress: $(brotli_files) $(gzip_files) $(zstd_files)
 
+install: compress
+
 deploy: build compress
 	rsync --archive --delete public/ pappel.alanpearce.eu:/srv/http/alanpearce.eu
 
-.PHONY: all build compress deploy
+.PHONY: all build compress install deploy
M flake.nixflake.nix
@@ -9,15 +9,25 @@ let         pkgs = nixpkgs.legacyPackages.${system};
       in
       {
-        devShells.default = pkgs.mkShell {
-          packages = with pkgs; [
-            brotli
-            gzip
-            zstd
-            gnugrep
-            git
-            zola
-          ];
+        packages = {
+          default = pkgs.stdenv.mkDerivation {
+            name = "alanpearce.eu";
+            src = self;
+
+            enableParallelBuilding = true;
+            makeFlags = [ "PREFIX=$(out)" ];
+
+            nativeBuildInputs = with pkgs; [
+              zola
+              fd
+              brotli
+              gzip
+              zstd
+              git
+            ];
+
+            dontFixup = true;
+          };
         };
       });
 }