2018-06-27 22:47:21 +02:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, libnotify, librsvg, killall
|
|
|
|
, gtk3, libappindicator-gtk3, substituteAll, syncthing, wrapGAppsHook
|
|
|
|
, gnome3, buildPythonApplication, dateutil, pyinotify, pygobject3
|
|
|
|
, bcrypt, gobjectIntrospection }:
|
2017-11-24 20:56:10 +01:00
|
|
|
|
2018-01-26 06:24:48 +01:00
|
|
|
buildPythonApplication rec {
|
2018-06-14 17:38:06 +02:00
|
|
|
version = "0.9.4";
|
2017-11-24 20:56:10 +01:00
|
|
|
name = "syncthing-gtk-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "syncthing";
|
|
|
|
repo = "syncthing-gtk";
|
|
|
|
rev = "v${version}";
|
2018-06-14 17:38:06 +02:00
|
|
|
sha256 = "0d3rjd1xjd7zravks9a2ph7gv1cm8wxaxkkvl1fvcx15v7f3hff9";
|
2017-11-24 20:56:10 +01:00
|
|
|
};
|
|
|
|
|
2018-01-26 06:21:18 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
wrapGAppsHook
|
|
|
|
# For setup hook populating GI_TYPELIB_PATH
|
|
|
|
gobjectIntrospection
|
|
|
|
];
|
2017-11-24 22:52:57 +01:00
|
|
|
|
|
|
|
buildInputs = [
|
2018-02-23 18:48:15 +01:00
|
|
|
gtk3 librsvg libappindicator-gtk3
|
|
|
|
libnotify gnome3.adwaita-icon-theme
|
2017-11-24 22:52:57 +01:00
|
|
|
# Schemas with proxy configuration
|
2018-02-25 03:23:58 +01:00
|
|
|
gnome3.gsettings-desktop-schemas
|
2017-11-24 20:56:10 +01:00
|
|
|
];
|
|
|
|
|
2018-01-26 06:24:48 +01:00
|
|
|
propagatedBuildInputs = [
|
2017-11-25 01:35:50 +01:00
|
|
|
dateutil pyinotify pygobject3 bcrypt
|
2017-11-24 22:52:57 +01:00
|
|
|
];
|
2017-11-24 20:56:10 +01:00
|
|
|
|
2017-11-25 01:33:24 +01:00
|
|
|
patches = [
|
2018-06-14 17:38:06 +02:00
|
|
|
(fetchpatch {
|
|
|
|
url = https://github.com/syncthing/syncthing-gtk/commit/b2535e5a9cdb31c4987ab7af37f62d58d38255b7.patch;
|
|
|
|
sha256 = "047v79wz2a9334gbzywlqwpacrk53s26ksvfqaddk06avv8742w7";
|
|
|
|
})
|
2018-01-26 06:10:54 +01:00
|
|
|
(substituteAll {
|
|
|
|
src = ./paths.patch;
|
2018-06-27 22:47:21 +02:00
|
|
|
killall = "${killall}/bin/killall";
|
2018-01-26 06:10:54 +01:00
|
|
|
syncthing = "${syncthing}/bin/syncthing";
|
|
|
|
})
|
2017-11-25 01:33:24 +01:00
|
|
|
];
|
|
|
|
|
2018-06-14 17:38:06 +02:00
|
|
|
setupPyBuildFlags = [ "build_py" "--nofinddaemon" "--nostdownloader" ];
|
|
|
|
|
2017-11-25 01:33:24 +01:00
|
|
|
postPatch = ''
|
2017-11-24 20:56:10 +01:00
|
|
|
substituteInPlace setup.py --replace "version = get_version()" "version = '${version}'"
|
|
|
|
substituteInPlace scripts/syncthing-gtk --replace "/usr/share" "$out/share"
|
|
|
|
substituteInPlace syncthing_gtk/app.py --replace "/usr/share" "$out/share"
|
2017-11-25 01:33:24 +01:00
|
|
|
substituteInPlace syncthing_gtk/uisettingsdialog.py --replace "/usr/share" "$out/share"
|
2017-11-24 20:56:10 +01:00
|
|
|
substituteInPlace syncthing_gtk/wizard.py --replace "/usr/share" "$out/share"
|
|
|
|
substituteInPlace syncthing-gtk.desktop --replace "/usr/bin/syncthing-gtk" "$out/bin/syncthing-gtk"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-01-26 06:10:54 +01:00
|
|
|
description = "GTK3 & python based GUI for Syncthing";
|
|
|
|
homepage = https://github.com/syncthing/syncthing-gtk;
|
2017-11-24 20:56:10 +01:00
|
|
|
license = licenses.gpl2;
|
2018-06-14 17:38:06 +02:00
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
platforms = syncthing.meta.platforms;
|
2017-11-24 20:56:10 +01:00
|
|
|
};
|
|
|
|
}
|