102 lines
2.6 KiB
Nix
102 lines
2.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitLab
|
|
, fetchpatch
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, python3
|
|
, wrapGAppsHook
|
|
, libinput
|
|
, gnome
|
|
, gnome-desktop
|
|
, glib
|
|
, gtk3
|
|
, wayland
|
|
, libdrm
|
|
, libxkbcommon
|
|
, wlroots
|
|
}:
|
|
|
|
let
|
|
phocWlroots = wlroots.overrideAttrs (old: {
|
|
patches = (old.patches or []) ++ [
|
|
# Revert "layer-shell: error on 0 dimension without anchors"
|
|
# https://source.puri.sm/Librem5/phosh/-/issues/422
|
|
(fetchpatch {
|
|
name = "0001-Revert-layer-shell-error-on-0-dimension-without-anch.patch";
|
|
url = "https://source.puri.sm/Librem5/wlroots/-/commit/4f66b0931aaaee65367102e9c4ccb736097412c7.patch";
|
|
hash = "sha256-2Vy5a4lWh8FP2PN6xRIZv6IlUuLZibT0MYW+EyvVULs=";
|
|
})
|
|
|
|
# xdg-activation: Deduplicate token creation code
|
|
(fetchpatch {
|
|
name = "xdg-activation-deduplicate-token-creation-code.patch";
|
|
url = "https://gitlab.freedesktop.org/wlroots/wlroots/-/commit/dd03d839ab56c3e5d7c607a8d76e58e0b75edb85.patch";
|
|
sha256 = "sha256-mxt68MISC24xpaBtVSc1F2W4cyNs5wQowtbUQH9Eqr8=";
|
|
})
|
|
|
|
# seat: Allow to cancel touches
|
|
(fetchpatch {
|
|
name = "seat-Allow-to-cancel-touches.patch";
|
|
url = "https://gitlab.freedesktop.org/wlroots/wlroots/-/commit/17b2b06633729f1826715c1d0b84614aa3cedb3a.patch";
|
|
sha256 = "sha256-BAeXa3ZB5TXnlq0ZP2+rZlVXEPWpLP4Wi4TLwoXjkz4=";
|
|
})
|
|
|
|
# From
|
|
# https://gitlab.freedesktop.org/wlroots/wlroots/-/commit/13fcdba75cf5f21cfd49c1a05f4fa62f77619b40
|
|
# which has been merged upstream, but doesn't cleanly apply on to the
|
|
# latest released version.
|
|
./0001-handle-outputs-that-arent-in-the-layout.patch
|
|
];
|
|
});
|
|
in stdenv.mkDerivation rec {
|
|
pname = "phoc";
|
|
version = "0.21.1";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
group = "World";
|
|
owner = "Phosh";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-HPqhro6TE/Ukh4txBPrDoIuDaxSxd/ZkDVZU3+m3GFg=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
python3
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
libdrm.dev
|
|
libxkbcommon
|
|
libinput
|
|
glib
|
|
gtk3
|
|
gnome-desktop
|
|
# For keybindings settings schemas
|
|
gnome.mutter
|
|
wayland
|
|
phocWlroots
|
|
];
|
|
|
|
mesonFlags = ["-Dembed-wlroots=disabled"];
|
|
|
|
postPatch = ''
|
|
chmod +x build-aux/post_install.py
|
|
patchShebangs build-aux/post_install.py
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Wayland compositor for mobile phones like the Librem 5";
|
|
homepage = "https://gitlab.gnome.org/World/Phosh/phoc";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ masipcat zhaofengli ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|