2021-01-25 09:26:54 +01:00
|
|
|
{ lib, fetchFromGitHub, fetchpatch, libnotify, librsvg, killall
|
2018-06-27 22:47:21 +02:00
|
|
|
, gtk3, libappindicator-gtk3, substituteAll, syncthing, wrapGAppsHook
|
|
|
|
, gnome3, buildPythonApplication, dateutil, pyinotify, pygobject3
|
2019-07-14 13:03:20 +02:00
|
|
|
, bcrypt, gobject-introspection, gsettings-desktop-schemas
|
2019-08-12 01:02:06 +02:00
|
|
|
, pango, gdk-pixbuf, atk }:
|
2017-11-24 20:56:10 +01:00
|
|
|
|
2018-01-26 06:24:48 +01:00
|
|
|
buildPythonApplication rec {
|
2020-03-14 05:32:32 +01:00
|
|
|
version = "0.9.4.4";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "syncthing-gtk";
|
2017-11-24 20:56:10 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "syncthing";
|
|
|
|
repo = "syncthing-gtk";
|
|
|
|
rev = "v${version}";
|
2020-03-14 05:32:32 +01:00
|
|
|
sha256 = "0nc0wd7qvyri7841c3dd9in5d7367hys0isyw8znv5fj4c0a6v1f";
|
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
|
2018-12-02 12:41:15 +01:00
|
|
|
gobject-introspection
|
2019-08-12 01:02:06 +02:00
|
|
|
pango gdk-pixbuf atk libnotify
|
2018-01-26 06:21:18 +01:00
|
|
|
];
|
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
|
2019-04-17 02:38:26 +02:00
|
|
|
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-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
|
|
|
];
|
|
|
|
|
2020-03-14 05:32:32 +01:00
|
|
|
# repo doesn't have any tests
|
|
|
|
doCheck = false;
|
|
|
|
|
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"
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-01-26 06:10:54 +01:00
|
|
|
description = "GTK3 & python based GUI for Syncthing";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/syncthing/syncthing-gtk";
|
2017-11-24 20:56:10 +01:00
|
|
|
license = licenses.gpl2;
|
2020-10-18 22:14:13 +02:00
|
|
|
broken = true;
|
2018-06-14 17:38:06 +02:00
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
platforms = syncthing.meta.platforms;
|
2017-11-24 20:56:10 +01:00
|
|
|
};
|
|
|
|
}
|