nixpkgs/pkgs/applications/networking/instant-messengers/fluffychat/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.5 KiB
Nix
Raw Normal View History

2020-10-23 23:42:42 +00:00
{ lib
2023-04-26 06:55:12 +00:00
, fetchFromGitLab
2022-02-20 18:05:42 +00:00
, imagemagick
2023-05-11 17:01:48 +00:00
, flutter37
2022-02-20 18:05:42 +00:00
, makeDesktopItem
2020-10-23 23:42:42 +00:00
}:
2023-05-11 17:01:48 +00:00
flutter37.buildFlutterApplication rec {
2023-05-14 15:07:58 +00:00
version = "1.11.2";
2023-04-26 06:55:12 +00:00
name = "fluffychat";
2020-10-23 23:42:42 +00:00
2023-04-26 06:55:12 +00:00
src = fetchFromGitLab {
owner = "famedly";
repo = "fluffychat";
rev = "v${version}";
2023-05-14 15:07:58 +00:00
hash = "sha256-vHzZDkSgxcZf3y/+A645hxBverm34J5xNnNwyxnSVUA=";
2020-10-23 23:42:42 +00:00
};
2023-04-26 06:55:12 +00:00
depsListFile = ./deps.json;
2023-05-14 15:07:58 +00:00
vendorHash = "sha256-u8YI4UBnEfPpvjBfhbo4LGolb56w94EiUlnLlYITdXQ=";
2023-04-26 06:55:12 +00:00
2022-02-20 18:05:42 +00:00
desktopItem = makeDesktopItem {
name = "Fluffychat";
exec = "@out@/bin/fluffychat";
icon = "fluffychat";
desktopName = "Fluffychat";
genericName = "Chat with your friends (matrix client)";
categories = [ "Chat" "Network" "InstantMessaging" ];
2022-02-20 18:05:42 +00:00
};
2023-04-26 06:55:12 +00:00
nativeBuildInputs = [ imagemagick ];
2022-02-23 14:09:47 +00:00
2023-04-26 06:55:12 +00:00
postInstall = ''
FAV=$out/app/data/flutter_assets/assets/favicon.png
2022-02-20 18:05:42 +00:00
ICO=$out/share/icons
install -D $FAV $ICO/fluffychat.png
mkdir $out/share/applications
cp $desktopItem/share/applications/*.desktop $out/share/applications
for size in 24 32 42 64 128 256 512; do
2022-02-20 18:05:42 +00:00
D=$ICO/hicolor/''${s}x''${s}/apps
mkdir -p $D
convert $FAV -resize ''${size}x''${size} $D/fluffychat.png
2022-02-20 18:05:42 +00:00
done
substituteInPlace $out/share/applications/*.desktop \
--subst-var out
'';
2020-10-23 23:42:42 +00:00
meta = with lib; {
description = "Chat with your friends (matrix client)";
homepage = "https://fluffychat.im/";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ mkg20001 gilice ];
platforms = [ "x86_64-linux" "aarch64-linux" ];
2023-04-26 06:55:12 +00:00
sourceProvenance = [ sourceTypes.fromSource ];
2020-10-23 23:42:42 +00:00
};
}