2022-02-27 14:12:05 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchgit
|
|
|
|
, unstableGitUpdater
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule {
|
|
|
|
pname = "bloat";
|
2024-06-21 21:41:38 +00:00
|
|
|
version = "0-unstable-2024-06-17";
|
2022-02-27 14:12:05 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.freesoftwareextremist.com/bloat";
|
2024-06-21 21:41:38 +00:00
|
|
|
rev = "51d6ff26fe224444b921b5b1f367f15782cf84d3";
|
|
|
|
hash = "sha256-g5CbX134o9aeFggsVYnPfbZ4bsRQUUNnAe1KhTlONuU=";
|
2022-02-27 14:12:05 +00:00
|
|
|
};
|
|
|
|
|
2023-09-19 08:35:10 +00:00
|
|
|
vendorHash = null;
|
2022-02-27 14:12:05 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/bloat
|
|
|
|
cp -r templates $out/share/bloat/templates
|
|
|
|
cp -r static $out/share/bloat/static
|
|
|
|
sed \
|
|
|
|
-e "s%=templates%=$out/share/bloat/templates%g" \
|
|
|
|
-e "s%=static%=$out/share/bloat/static%g" \
|
|
|
|
< bloat.conf > $out/share/bloat/bloat.conf.example
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru.updateScript = unstableGitUpdater { };
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Web client for Pleroma and Mastodon";
|
|
|
|
longDescription = ''
|
|
|
|
A lightweight web client for Pleroma and Mastodon.
|
|
|
|
Does not require JavaScript to display text, images, audio and videos.
|
|
|
|
'';
|
|
|
|
homepage = "https://bloat.freesoftwareextremist.com";
|
|
|
|
downloadPage = "https://git.freesoftwareextremist.com/bloat/";
|
|
|
|
license = licenses.cc0;
|
|
|
|
maintainers = with maintainers; [ fgaz ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "bloat";
|
2022-02-27 14:12:05 +00:00
|
|
|
};
|
|
|
|
}
|