2019-03-10 01:10:28 +00:00
|
|
|
|
{ stdenv, fetchFromGitHub, substituteAll, python3, openssl, folks, gsound
|
2018-09-20 21:31:51 +01:00
|
|
|
|
, meson, ninja, libxml2, pkgconfig, gobject-introspection, wrapGAppsHook
|
2019-11-04 23:38:42 +00:00
|
|
|
|
, glib, gtk3, at-spi2-core, upower, openssh, gnome3, gjs }:
|
2018-09-20 21:31:51 +01:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
|
pname = "gnome-shell-gsconnect";
|
2019-12-30 00:55:14 +00:00
|
|
|
|
version = "30";
|
2018-09-20 21:31:51 +01:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "andyholmes";
|
|
|
|
|
repo = "gnome-shell-extension-gsconnect";
|
|
|
|
|
rev = "v${version}";
|
2019-12-30 00:55:14 +00:00
|
|
|
|
sha256 = "17j96y72mj7vg2csn5c9rji7jy04x5qzl8knf5gky6wppxj9zjb4";
|
2018-09-20 21:31:51 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
|
# Make typelibs available in the extension
|
|
|
|
|
(substituteAll {
|
|
|
|
|
src = ./fix-paths.patch;
|
|
|
|
|
gapplication = "${glib.bin}/bin/gapplication";
|
|
|
|
|
})
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
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
|
2019-03-10 01:10:28 +00:00
|
|
|
|
folks # libfolks
|
2018-09-20 21:31:51 +01:00
|
|
|
|
gnome3.nautilus # TODO: this contaminates the package with nautilus and gnome-autoar typelibs but it is only needed for the extension
|
|
|
|
|
gnome3.nautilus-python
|
2019-03-10 01:10:28 +00:00
|
|
|
|
gsound
|
2018-09-20 21:31:51 +01:00
|
|
|
|
upower
|
|
|
|
|
gnome3.caribou
|
2019-11-04 23:38:42 +00:00
|
|
|
|
gjs # for running daemon
|
2019-09-10 04:10:51 +01:00
|
|
|
|
gnome3.evolution-data-server # for libebook-contacts typelib
|
2018-09-20 21:31:51 +01:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
mesonFlags = [
|
|
|
|
|
"-Dgnome_shell_libdir=${gnome3.gnome-shell}/lib"
|
2019-08-26 08:44:25 +01:00
|
|
|
|
"-Dgsettings_schemadir=${glib.makeSchemaPath (placeholder "out") "${pname}-${version}"}"
|
2018-09-20 21:31:51 +01:00
|
|
|
|
"-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
|
2019-03-10 01:10:28 +00:00
|
|
|
|
gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ folks ]}")
|
2018-09-20 21:31:51 +01:00
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
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
|
2019-09-22 08:38:09 +01:00
|
|
|
|
echo "Wrapping program $file"
|
|
|
|
|
wrapGApp "$file"
|
2018-09-20 21:31:51 +01:00
|
|
|
|
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;
|
|
|
|
|
};
|
|
|
|
|
}
|