nixpkgs/pkgs/applications/networking/ssb/patchwork/default.nix

54 lines
1.5 KiB
Nix
Raw Normal View History

{ appimageTools, symlinkJoin, lib, fetchurl, makeDesktopItem }:
2019-05-15 05:16:32 +02:00
let
pname = "ssb-patchwork";
2019-12-31 16:11:47 +01:00
version = "3.17.2";
2019-12-02 17:03:31 +01:00
name = "Patchwork-${version}";
2019-05-15 05:16:32 +02:00
src = fetchurl {
2019-12-02 17:03:31 +01:00
url = "https://github.com/ssbc/patchwork/releases/download/v${version}/${name}.AppImage";
2019-12-31 16:11:47 +01:00
sha256 = "1pmy01jwdr461vsl4fsxi3jaqnjx9yl5dw4987y5g73qx21qc5d5";
2019-05-15 05:16:32 +02:00
};
binary = appimageTools.wrapType2 {
2019-09-09 01:38:31 +02:00
name = pname;
inherit src;
};
# we only use this to extract the icon
appimage-contents = appimageTools.extractType2 {
inherit name src;
};
2019-05-15 05:16:32 +02:00
desktopItem = makeDesktopItem {
name = "ssb-patchwork";
exec = "${binary}/bin/ssb-patchwork";
icon = "ssb-patchwork.png";
comment = "Decentralized messaging and sharing app";
desktopName = "Patchwork";
genericName = "Patchwork";
categories = "Network;";
};
2019-05-15 05:16:32 +02:00
in
symlinkJoin {
inherit name;
paths = [ binary ];
postBuild = ''
mkdir -p $out/share/pixmaps/ $out/share/applications
cp ${appimage-contents}/ssb-patchwork.png $out/share/pixmaps
cp ${desktopItem}/share/applications/* $out/share/applications/
'';
2019-05-15 05:16:32 +02:00
meta = with lib; {
description = "A decentralized messaging and sharing app built on top of Secure Scuttlebutt (SSB)";
2019-05-15 05:16:32 +02:00
longDescription = ''
sea-slang for gossip - a scuttlebutt is basically a watercooler on a ship.
'';
homepage = https://www.scuttlebutt.nz/;
license = licenses.agpl3;
maintainers = with maintainers; [ thedavidmeister ninjatrappeur flokli ];
2019-05-15 05:16:32 +02:00
platforms = [ "x86_64-linux" ];
};
}