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 03:16:32 +00:00
let
pname = "ssb-patchwork";
2020-02-18 13:30:24 +00:00
version = "3.17.4";
2019-12-02 16:03:31 +00:00
name = "Patchwork-${version}";
2019-05-15 03:16:32 +00:00
src = fetchurl {
2019-12-02 16:03:31 +00:00
url = "https://github.com/ssbc/patchwork/releases/download/v${version}/${name}.AppImage";
2020-02-18 13:30:24 +00:00
sha256 = "0mjyrd0d9wfsfd9ajg1xf7ijg4k8jp76swjsiydxpgfk1sdljswv";
2019-05-15 03:16:32 +00:00
};
binary = appimageTools.wrapType2 {
2019-09-08 23:38:31 +00:00
name = pname;
inherit src;
};
# we only use this to extract the icon
appimage-contents = appimageTools.extractType2 {
inherit name src;
};
2019-05-15 03:16:32 +00: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 03:16:32 +00: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 03:16:32 +00:00
meta = with lib; {
description = "A decentralized messaging and sharing app built on top of Secure Scuttlebutt (SSB)";
2019-05-15 03:16:32 +00:00
longDescription = ''
sea-slang for gossip - a scuttlebutt is basically a watercooler on a ship.
'';
2020-02-18 13:30:24 +00:00
homepage = "https://www.scuttlebutt.nz/";
2019-05-15 03:16:32 +00:00
license = licenses.agpl3;
2020-02-18 13:30:24 +00:00
maintainers = with maintainers; [ asymmetric ninjatrappeur thedavidmeister ];
2019-05-15 03:16:32 +00:00
platforms = [ "x86_64-linux" ];
};
}