3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix

88 lines
2.8 KiB
Nix
Raw Normal View History

2019-08-22 20:51:50 +01:00
{ pkgs, stdenv, fetchFromGitHub, makeWrapper, makeDesktopItem, electron_5, riot-web }:
2019-05-02 23:59:48 +01:00
# Note for maintainers:
# Versions of `riot-web` and `riot-desktop` should be kept in sync.
with (import ./yarn2nix.nix { inherit pkgs; });
2019-03-18 01:59:57 +00:00
let
executableName = "riot-desktop";
2019-08-22 20:51:50 +01:00
version = "1.3.3";
2019-03-18 01:59:57 +00:00
riot-web-src = fetchFromGitHub {
owner = "vector-im";
repo = "riot-web";
rev = "v${version}";
2019-08-22 20:51:50 +01:00
sha256 = "1nzzxcz4r9932cha80q1bzn1425m67fsl89pn7n7ybrv6y0jnxpc";
2019-03-18 01:59:57 +00:00
};
in mkYarnPackage rec {
2019-03-18 01:59:57 +00:00
name = "riot-desktop-${version}";
inherit version;
src = "${riot-web-src}/electron_app";
# The package manifest should be copied on each update of this package.
# > cp ${riot-web-src}/electron_app/package.json riot-desktop-package.json
packageJSON = ./riot-desktop-package.json;
# The dependency expression can be regenerated using nixos.yarn2nix with the following command:
# > yarn2nix --lockfile=${riot-web-src}/electron_app/yarn.lock > riot-desktop-yarndeps.nix
yarnNix = ./riot-desktop-yarndeps.nix;
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
# resources
mkdir -p "$out/share/riot"
ln -s '${riot-web}' "$out/share/riot/webapp"
cp -r '${riot-web-src}/origin_migrator' "$out/share/riot/origin_migrator"
cp -r '.' "$out/share/riot/electron"
# icons
for icon in $out/share/riot/electron/build/icons/*.png; do
mkdir -p "$out/share/icons/hicolor/$(basename $icon .png)/apps"
ln -s "$icon" "$out/share/icons/hicolor/$(basename $icon .png)/apps/riot.png"
done
# desktop item
mkdir -p "$out/share"
ln -s "${desktopItem}/share/applications" "$out/share/applications"
# executable wrapper
2019-08-22 20:51:50 +01:00
makeWrapper '${electron_5}/bin/electron' "$out/bin/${executableName}" \
2019-03-18 01:59:57 +00:00
--add-flags "$out/share/riot/electron"
'';
# Do not attempt generating a tarball for riot-web again.
# note: `doDist = false;` does not work.
distPhase = ''
true
'';
2019-03-18 01:59:57 +00:00
# The desktop item properties should be kept in sync with data from upstream:
# * productName and description from
# https://github.com/vector-im/riot-web/blob/develop/electron_app/package.json
# * category and StartupWMClass from the build.linux section of
# https://github.com/vector-im/riot-web/blob/develop/package.json
desktopItem = makeDesktopItem {
name = "riot";
2019-03-18 01:59:57 +00:00
exec = executableName;
icon = "riot";
desktopName = "Riot";
genericName = "Matrix Client";
comment = meta.description;
categories = "Network;InstantMessaging;Chat;";
extraEntries = ''
StartupWMClass="riot"
'';
};
meta = with stdenv.lib; {
description = "A feature-rich client for Matrix.org";
homepage = https://about.riot.im/;
license = licenses.asl20;
maintainers = with maintainers; [ pacien worldofpeace ];
2019-08-22 20:51:50 +01:00
inherit (electron_5.meta) platforms;
2019-03-18 01:59:57 +00:00
};
}