config/pkgs/gamja.nix

66 lines
1.6 KiB
Nix
Raw Normal View History

2024-02-12 15:10:20 +02:00
{
lib,
2024-02-12 16:19:46 +02:00
gamja,
2024-02-12 15:10:20 +02:00
fetchFromSourcehut,
buildNpmPackage,
2024-02-12 16:19:46 +02:00
runCommand,
2024-02-12 15:10:20 +02:00
python3,
writeText,
2024-02-12 16:19:46 +02:00
brotli,
zopfli,
xorg,
2024-02-12 15:10:20 +02:00
# optional configuration attrSet, see https://git.sr.ht/~emersion/gamja#configuration-file for possible values
gamjaConfig ? null,
}:
buildNpmPackage rec {
pname = "gamja";
version = "1.0.0-beta.9";
src = fetchFromSourcehut {
owner = "~emersion";
repo = "gamja";
rev = "v${version}";
hash = "sha256-09rCj9oMzldRrxMGH4rUnQ6wugfhfmJP3rHET5b+NC8=";
};
npmDepsHash = "sha256-LxShwZacCctKAfMNCUMyrSaI1hIVN80Wseq/d8WITkc=";
# without this, the aarch64-linux build fails
nativeBuildInputs = [python3];
installPhase = ''
runHook preInstall
cp -r dist $out
${lib.optionalString (gamjaConfig != null) "cp ${writeText "gamja-config" (builtins.toJSON gamjaConfig)} $out/config.json"}
runHook postInstall
'';
2024-02-12 16:19:46 +02:00
passthru = {
data-compressed =
2024-02-12 18:19:39 +02:00
runCommand "gamja-compressed" {
2024-02-12 16:19:46 +02:00
} ''
mkdir $out
2024-02-12 18:19:39 +02:00
${xorg.lndir}/bin/lndir ${gamja}/ $out/
2024-02-12 16:19:46 +02:00
find $out \
-name '*.css' -or \
-name '*.js' -or \
2024-02-12 18:19:39 +02:00
-name '*.json' -or \
2024-02-12 16:19:46 +02:00
-name '*.map' -or \
-name '*.webmanifest' -or \
-name '*.html' | \
tee >(xargs -n1 -P''$(nproc) ${zopfli}/bin/zopfli) | \
xargs -n1 -P''$(nproc) ${brotli}/bin/brotli
'';
};
2024-02-12 15:10:20 +02:00
meta = with lib; {
description = "A simple IRC web client";
homepage = "https://git.sr.ht/~emersion/gamja";
license = licenses.agpl3Only;
maintainers = with maintainers; [motiejus];
};
}