summary refs log tree commit diff
path: root/pkgs/applications/backup/deja-dup/default.nix
blob: d283dc7107d746dc6ab77a355819b5c890034d02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{ stdenv
, fetchFromGitLab
, substituteAll
, meson
, ninja
, pkgconfig
, vala
, gettext
, gnome3
, libnotify
, itstool
, glib
, gtk3
, libxml2
, gnome-online-accounts
, coreutils
, libsoup
, libsecret
, pcre
, libxkbcommon
, wrapGAppsHook
, libpthreadstubs
, libXdmcp
, epoxy
, at-spi2-core
, dbus
, libgpgerror
, json-glib
, appstream-glib
, desktop-file-utils
, duplicity
}:

stdenv.mkDerivation rec {
  pname = "deja-dup";
  version = "40.6";

  src = fetchFromGitLab {
    domain = "gitlab.gnome.org";
    owner = "World";
    repo = pname;
    rev = version;
    sha256 = "1d4g34g660wv42a4k2511bxrh90z0vdl3v7ahg0m45phijg9n2n1";
  };

  patches = [
    (substituteAll {
      src = ./fix-paths.patch;
      inherit coreutils;
    })

    # Hardcode GSettings path for Nautilus extension to avoid crashes from missing schemas
    ./hardcode-gsettings.patch
  ];

  postPatch = ''
    # substitute variable from hardcode-gsettings.patch
    substituteInPlace deja-dup/nautilus/NautilusExtension.c --subst-var-by DEJA_DUP_GSETTINGS_PATH "${glib.makeSchemaPath (placeholder "out") "${pname}-${version}"}"
  '';

  nativeBuildInputs = [
    meson
    ninja
    pkgconfig
    vala
    gettext
    itstool
    appstream-glib
    desktop-file-utils
    libxml2
    wrapGAppsHook
  ];

  buildInputs = [
    libnotify
    libsoup
    glib
    gtk3
    libsecret
    pcre
    libxkbcommon
    libpthreadstubs
    libXdmcp
    epoxy
    gnome3.nautilus
    at-spi2-core
    dbus
    gnome-online-accounts # GOA not used any more, only for transferring legacy keys
    libgpgerror
    json-glib
  ];

  # TODO: hard code the path
  # https://gitlab.gnome.org/World/deja-dup/merge_requests/32
  propagatedUserEnvPkgs = [ duplicity ];

  # install nautilus plug-in to correct path
  PKG_CONFIG_LIBNAUTILUS_EXTENSION_EXTENSIONDIR = "${placeholder "out"}/lib/nautilus/extensions-3.0";

  meta = with stdenv.lib; {
    description = "A simple backup tool";
    longDescription = ''
      Déjà Dup is a simple backup tool. It hides the complexity \
      of backing up the Right Way (encrypted, off-site, and regular) \
      and uses duplicity as the backend.
    '';
    homepage = "https://wiki.gnome.org/Apps/DejaDup";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ jtojnar joncojonathan ];
    platforms = platforms.linux;
  };
}