1
Fork 0
e11sync/pkgs/e11sync-static.nix

42 lines
1.0 KiB
Nix
Raw Normal View History

2024-01-14 20:00:17 +02:00
{
runCommand,
2024-01-14 20:00:17 +02:00
zopfli,
brotli,
findutils,
2024-01-28 18:15:49 +02:00
e11sync-blog,
e11sync-djangostatic,
}:
runCommand "e11sync-static" {
2024-01-28 18:15:49 +02:00
srcs = [e11sync-djangostatic e11sync-blog];
nativeBuildInputs = [findutils];
2024-01-28 18:15:49 +02:00
sourceRoot = ".";
} ''
unpackPhase
2024-01-28 18:15:49 +02:00
# check that {e11sync-djangostatic,e11sync-blog/static/style.*.css
# is the same file
hash1=$(echo e11sync-djangostatic/static/style.*.css | sed 's;.*/;;' )
hash2=$(echo e11sync-blog/static/style.*.css | sed 's;.*/;;' )
if [ "$hash1" != "$hash2" ]; then
{
echo "style.*.css in blog and django do not match:"
ls e11sync-djangostatic/style/style.*.css
ls blog/style/style.*.css
} >&2
fi
mkdir -p $out
mv e11sync-djangostatic/* $out/
mv --no-clobber e11sync-blog/{static,blog,contact} $out/
find $out \
-name '*.css' -or \
-name '*.js' -or \
-name '*.svg' -or \
2024-01-28 18:15:49 +02:00
-name '*.html' -or \
-name '*.txt' | \
tee >(xargs -n1 -P''$(nproc) ${zopfli}/bin/zopfli) | \
xargs -n1 -P''$(nproc) ${brotli}/bin/brotli
''