mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
134 lines
3.6 KiB
Nix
134 lines
3.6 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, gtk4
|
|
, wrapGAppsHook3
|
|
, libadwaita
|
|
, tdlib
|
|
, rlottie
|
|
, stdenv
|
|
, rustPlatform
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, rustc
|
|
, cargo
|
|
, desktop-file-utils
|
|
, blueprint-compiler
|
|
, libxml2
|
|
, libshumate
|
|
, darwin
|
|
}:
|
|
|
|
let
|
|
pname = "paper-plane";
|
|
version = "0.1.0-beta.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "paper-plane-developers";
|
|
repo = "paper-plane";
|
|
rev = "v${version}";
|
|
hash = "sha256-qcAHxNnF980BHMqLF86M06YQnEN5L/8nkyrX6HQjpBA=";
|
|
};
|
|
|
|
# Paper Plane requires a patch to the gtk4, but may be removed later
|
|
# https://github.com/paper-plane-developers/paper-plane/tree/main?tab=readme-ov-file#prerequisites
|
|
gtk4-paperplane = gtk4.overrideAttrs (prev: {
|
|
patches = (prev.patches or []) ++ [ "${src}/build-aux/gtk-reversed-list.patch" ];
|
|
});
|
|
wrapPaperPlaneHook = wrapGAppsHook3.override {
|
|
gtk3 = gtk4-paperplane;
|
|
};
|
|
# libadwaita has gtk4 in propagatedBuildInputs so it must be overrided
|
|
# to avoid linking two libraries, while libshumate doesn't
|
|
libadwaita-paperplane = libadwaita.override {
|
|
gtk4 = gtk4-paperplane;
|
|
};
|
|
tdlib-paperplane = tdlib.overrideAttrs (prev: {
|
|
pname = "tdlib-paperplane";
|
|
version = "1.8.19";
|
|
src = fetchFromGitHub {
|
|
owner = "tdlib";
|
|
repo = "td";
|
|
rev = "2589c3fd46925f5d57e4ec79233cd1bd0f5d0c09";
|
|
hash = "sha256-mbhxuJjrV3nC8Ja7N0WWF9ByHovJLmoLLuuzoU4khjU=";
|
|
};
|
|
});
|
|
rlottie-paperplane = rlottie.overrideAttrs (prev: {
|
|
pname = "rlottie-paperplane";
|
|
version = "0-unstable-2022-09-14";
|
|
src = fetchFromGitHub {
|
|
owner = "paper-plane-developers";
|
|
repo = "rlottie";
|
|
rev = "1dd47cec7eb8e1f657f02dce9c497ae60f7cf8c5";
|
|
hash = "sha256-OIKnDikuJuRIR9Jvl1PnUA9UAV09EmgGdDTeWoVi7jk=";
|
|
};
|
|
patches = [ ];
|
|
env.NIX_CFLAGS_COMPILE = prev.env.NIX_CFLAGS_COMPILE + " -Wno-error";
|
|
});
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit pname version src;
|
|
|
|
cargoDeps = rustPlatform.importCargoLock {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"gtk-rlottie-0.1.0" = "sha256-/F0VSXU0Z59QyFYXrB8NLe/Nw/uVjGY68BriOySSXyI=";
|
|
"origami-0.1.0" = "sha256-xh7eBjumqCOoAEvRkivs/fgvsKXt7UU67FCFt20oh5s=";
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
rustPlatform.cargoSetupHook
|
|
rustPlatform.bindgenHook
|
|
rustc
|
|
cargo
|
|
wrapPaperPlaneHook
|
|
desktop-file-utils
|
|
blueprint-compiler
|
|
libxml2.bin
|
|
];
|
|
|
|
buildInputs = [
|
|
libshumate
|
|
libadwaita-paperplane
|
|
tdlib-paperplane
|
|
rlottie-paperplane
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk.frameworks.Foundation
|
|
];
|
|
|
|
mesonFlags = [
|
|
# The API ID and hash provided here are for use with Paper Plane only.
|
|
# Redistribution of the key in Nixpkgs has been explicitly permitted
|
|
# by Paper Plane developers. Please do not use it in other projects.
|
|
"-Dtg_api_id=22303002"
|
|
"-Dtg_api_hash=3cc0969992690f032197e6609b296599"
|
|
];
|
|
|
|
# Workaround for the gettext-sys issue
|
|
# https://github.com/Koka/gettext-rs/issues/114
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString
|
|
(
|
|
stdenv.cc.isClang &&
|
|
lib.versionAtLeast stdenv.cc.version "16"
|
|
)
|
|
"-Wno-error=incompatible-function-pointer-types";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/paper-plane-developers/paper-plane";
|
|
description = "Chat over Telegram on a modern and elegant client";
|
|
longDescription = ''
|
|
Paper Plane is an alternative Telegram client. It uses libadwaita
|
|
for its user interface and strives to meet the design principles
|
|
of the GNOME desktop.
|
|
'';
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ aleksana ];
|
|
mainProgram = "paper-plane";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|