nixpkgs/pkgs/applications/window-managers/phosh/phosh-mobile-settings.nix
Rodney Lorrimar d1238f3546 phosh-mobile-settings: Drop desktop entry tweaks
The app launcher will appear under Phosh without these changes.
2024-02-07 20:10:15 +11:00

73 lines
1.5 KiB
Nix

{ lib
, stdenv
, fetchurl
, directoryListingUpdater
, meson
, ninja
, pkg-config
, wrapGAppsHook
, desktop-file-utils
, feedbackd
, gtk4
, libadwaita
, lm_sensors
, phoc
, phosh
, wayland-protocols
, json-glib
, gsound
}:
stdenv.mkDerivation rec {
pname = "phosh-mobile-settings";
version = "0.35.1";
src = fetchurl {
# This tarball includes the meson wrapped subproject 'gmobile'.
url = "https://sources.phosh.mobi/releases/${pname}/${pname}-${version}.tar.xz";
hash = "sha256-Kg3efPs0knbJ9b0buIkgqIL1XplcZpGIi0hxJptG6UI=";
};
nativeBuildInputs = [
meson
ninja
phosh
pkg-config
wrapGAppsHook
];
buildInputs = [
desktop-file-utils
feedbackd
gtk4
libadwaita
lm_sensors
phoc
wayland-protocols
json-glib
gsound
];
postPatch = ''
# There are no schemas to compile.
substituteInPlace meson.build \
--replace 'glib_compile_schemas: true' 'glib_compile_schemas: false'
'';
postInstall = ''
# this is optional, but without it phosh-mobile-settings won't know about lock screen plugins
ln -s '${phosh}/lib/phosh' "$out/lib/phosh"
'';
passthru.updateScript = directoryListingUpdater { };
meta = with lib; {
description = "A settings app for mobile specific things";
homepage = "https://gitlab.gnome.org/guidog/phosh-mobile-settings";
changelog = "https://gitlab.gnome.org/guidog/phosh-mobile-settings/-/blob/v${version}/debian/changelog";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ rvl ];
platforms = platforms.linux;
};
}