92 lines
3.2 KiB
Nix
92 lines
3.2 KiB
Nix
{ stdenv, fetchFromGitHub, substituteAll, python3, openssl, folks, gsound
|
||
, meson, ninja, libxml2, pkgconfig, gobject-introspection, wrapGAppsHook
|
||
, glib, gtk3, at-spi2-core, upower, openssh, gnome3 }:
|
||
|
||
stdenv.mkDerivation rec {
|
||
name = "gnome-shell-gsconnect-${version}";
|
||
version = "23";
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "andyholmes";
|
||
repo = "gnome-shell-extension-gsconnect";
|
||
rev = "v${version}";
|
||
sha256 = "011asrhkly9zhvnng2mh9v06yw39fx244pmqz5yk9rd9m4c32xid";
|
||
};
|
||
|
||
patches = [
|
||
# Make typelibs available in the extension
|
||
(substituteAll {
|
||
src = ./fix-paths.patch;
|
||
gapplication = "${glib.bin}/bin/gapplication";
|
||
mutter_gsettings_path = "${gnome3.mutter}/share/gsettings-schemas/${gnome3.mutter.name}/glib-2.0/schemas";
|
||
})
|
||
];
|
||
|
||
nativeBuildInputs = [
|
||
meson ninja pkgconfig
|
||
gobject-introspection # for locating typelibs
|
||
wrapGAppsHook # for wrapping daemons
|
||
libxml2 # xmllint
|
||
];
|
||
|
||
buildInputs = [
|
||
(python3.withPackages (pkgs: [ python3.pkgs.pygobject3 ])) # for folks.py
|
||
glib # libgobject
|
||
gtk3
|
||
at-spi2-core # atspi
|
||
folks # libfolks
|
||
gnome3.nautilus # TODO: this contaminates the package with nautilus and gnome-autoar typelibs but it is only needed for the extension
|
||
gnome3.nautilus-python
|
||
gsound
|
||
upower
|
||
gnome3.caribou
|
||
gnome3.gjs # for running daemon
|
||
gnome3.evolution-data-server # folks.py requires org.gnome.Evolution.DefaultSources gsettings; TODO: hardcode the schema path to the library (similarly to https://github.com/NixOS/nixpkgs/issues/47226)
|
||
];
|
||
|
||
mesonFlags = [
|
||
"-Dgnome_shell_libdir=${gnome3.gnome-shell}/lib"
|
||
"-Dgsettings_schemadir=${placeholder "out"}/share/gsettings-schemas/${name}/glib-2.0/schemas"
|
||
"-Dchrome_nmhdir=${placeholder "out"}/etc/opt/chrome/native-messaging-hosts"
|
||
"-Dchromium_nmhdir=${placeholder "out"}/etc/chromium/native-messaging-hosts"
|
||
"-Dopenssl_path=${openssl}/bin/openssl"
|
||
"-Dsshadd_path=${openssh}/bin/ssh-add"
|
||
"-Dsshkeygen_path=${openssh}/bin/ssh-keygen"
|
||
"-Dpost_install=true"
|
||
];
|
||
|
||
postPatch = ''
|
||
patchShebangs meson/nmh.sh
|
||
patchShebangs meson/post-install.sh
|
||
|
||
# TODO: do not include every typelib everywhere
|
||
# for example, we definitely do not need nautilus
|
||
for file in src/extension.js src/prefs.js; do
|
||
substituteInPlace "$file" \
|
||
--subst-var-by typelibPath "$GI_TYPELIB_PATH"
|
||
done
|
||
'';
|
||
|
||
preFixup = ''
|
||
# TODO: figure out why folks GIR does not contain shared-library attribute
|
||
# https://github.com/NixOS/nixpkgs/issues/47226
|
||
gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ folks ]}")
|
||
'';
|
||
|
||
postFixup = ''
|
||
# Let’s wrap the daemons
|
||
for file in $out/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/{{daemon,nativeMessagingHost}.js,components/folks.py}; do
|
||
echo "Wrapping program ''${file}"
|
||
wrapProgram "''${file}" "''${gappsWrapperArgs[@]}"
|
||
done
|
||
'';
|
||
|
||
meta = with stdenv.lib; {
|
||
description = "KDE Connect implementation for Gnome Shell";
|
||
homepage = https://github.com/andyholmes/gnome-shell-extension-gsconnect/wiki;
|
||
license = licenses.gpl2;
|
||
maintainers = with maintainers; [ etu ];
|
||
platforms = platforms.linux;
|
||
};
|
||
}
|