2019-06-20 23:56:06 +02:00
|
|
|
{ appimageTools, symlinkJoin, lib, fetchurl, makeDesktopItem }:
|
2019-05-15 05:16:32 +02:00
|
|
|
|
2019-06-20 23:56:06 +02:00
|
|
|
let
|
2019-05-15 05:16:32 +02:00
|
|
|
pname = "patchwork";
|
2019-06-20 23:56:06 +02:00
|
|
|
version = "3.14.1";
|
|
|
|
name = "${pname}-${version}";
|
2019-05-15 05:16:32 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-06-20 23:56:06 +02:00
|
|
|
url = "https://github.com/ssbc/patchwork/releases/download/v${version}/ssb-${pname}-${version}-x86_64.AppImage";
|
|
|
|
sha256 = "01vsldabv9nmbx8kzlgw275zykm72s1dxglnaq4jz5vbysbyn0qd";
|
2019-05-15 05:16:32 +02:00
|
|
|
};
|
|
|
|
|
2019-06-20 23:56:06 +02:00
|
|
|
binary = appimageTools.wrapType2 {
|
|
|
|
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
|
|
|
|
2019-06-20 23:56:06 +02:00
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = "patchwork";
|
|
|
|
exec = "${binary}/bin/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
|
|
|
|
2019-06-20 23:56:06 +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
|
|
|
|
2019-06-20 23:56:06 +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;
|
2019-06-20 23:56:06 +02:00
|
|
|
maintainers = with maintainers; [ thedavidmeister ninjatrappeur flokli ];
|
2019-05-15 05:16:32 +02:00
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
};
|
|
|
|
}
|