forked from mirrors/nixpkgs
85 lines
2.6 KiB
Nix
85 lines
2.6 KiB
Nix
{ stdenv, fetchFromGitHub
|
|
, makeWrapper, makeDesktopItem, mkYarnPackage
|
|
, electron_7, riot-web
|
|
}:
|
|
# Notes for maintainers:
|
|
# * versions of `riot-web` and `riot-desktop` should be kept in sync.
|
|
# * the Yarn dependency expression must be updated with `./update-riot-desktop.sh <git release tag>`
|
|
|
|
let
|
|
executableName = "riot-desktop";
|
|
version = "1.6.7";
|
|
src = fetchFromGitHub {
|
|
owner = "vector-im";
|
|
repo = "riot-desktop";
|
|
rev = "v${version}";
|
|
sha256 = "0l1ih7rkb0nnc79607kkg0k69j9kwqrczhgkqzsmvqxjz7pk9kgn";
|
|
};
|
|
electron = electron_7;
|
|
|
|
in mkYarnPackage rec {
|
|
name = "riot-desktop-${version}";
|
|
inherit version src;
|
|
|
|
packageJSON = ./riot-desktop-package.json;
|
|
yarnNix = ./riot-desktop-yarndeps.nix;
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
# resources
|
|
mkdir -p "$out/share/riot"
|
|
ln -s '${riot-web}' "$out/share/riot/webapp"
|
|
cp -r './deps/riot-desktop' "$out/share/riot/electron"
|
|
cp -r './deps/riot-desktop/res/img' "$out/share/riot"
|
|
rm "$out/share/riot/electron/node_modules"
|
|
cp -r './node_modules' "$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
|
|
makeWrapper '${electron}/bin/electron' "$out/bin/${executableName}" \
|
|
--add-flags "$out/share/riot/electron"
|
|
'';
|
|
|
|
# Do not attempt generating a tarball for riot-web again.
|
|
# note: `doDist = false;` does not work.
|
|
distPhase = ''
|
|
true
|
|
'';
|
|
|
|
# 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";
|
|
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 = teams.matrix.members;
|
|
inherit (electron.meta) platforms;
|
|
};
|
|
}
|