From 977df9de2e2705651903e7a7ba2478f52917b7e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 16 May 2022 00:10:40 +0000 Subject: [PATCH] pika-backup: 0.3.5 -> 0.4.0 https://gitlab.gnome.org/World/pika-backup/-/blob/v0.4.0/CHANGELOG.md --- .../backup/pika-backup/borg-path.patch | 29 +++++++++----- .../backup/pika-backup/default.nix | 38 +++++++++---------- 2 files changed, 36 insertions(+), 31 deletions(-) diff --git a/pkgs/applications/backup/pika-backup/borg-path.patch b/pkgs/applications/backup/pika-backup/borg-path.patch index c4ed649ffc9..faa4b76cec7 100644 --- a/pkgs/applications/backup/pika-backup/borg-path.patch +++ b/pkgs/applications/backup/pika-backup/borg-path.patch @@ -1,13 +1,22 @@ -diff --git a/src/borg/utils.rs b/src/borg/utils.rs -index 4e30913..30d7d6f 100644 ---- a/src/borg/utils.rs -+++ b/src/borg/utils.rs -@@ -223,7 +223,7 @@ impl BorgCall { +diff --git a/src/borg/process.rs b/src/borg/process.rs +index 63ea0ee..e3535e0 100644 +--- a/src/borg/process.rs ++++ b/src/borg/process.rs +@@ -203,7 +203,7 @@ impl BorgCall { } - pub fn cmd(&self) -> Command { -- let mut cmd = Command::new("borg"); -+ let mut cmd = Command::new("@borg@"); + pub fn cmd(&self) -> Result { +- let mut cmd = process::Command::new("borg"); ++ let mut cmd = process::Command::new("@borg@"); + + cmd.envs([self.set_password()?]); + +@@ -221,7 +221,7 @@ impl BorgCall { + } + + pub fn cmd_async(&self) -> Result { +- let mut cmd = async_process::Command::new("borg"); ++ let mut cmd = async_process::Command::new("@borg@"); + + cmd.envs([self.set_password()?]); - cmd.args(self.args()) - .stderr(Stdio::piped()) diff --git a/pkgs/applications/backup/pika-backup/default.nix b/pkgs/applications/backup/pika-backup/default.nix index 604456c6583..a8524dea91b 100644 --- a/pkgs/applications/backup/pika-backup/default.nix +++ b/pkgs/applications/backup/pika-backup/default.nix @@ -5,35 +5,34 @@ , rustPlatform , substituteAll , desktop-file-utils +, itstool , meson , ninja , pkg-config , python3 -, wrapGAppsHook +, wrapGAppsHook4 , borgbackup -, dbus -, gdk-pixbuf -, glib -, gtk3 -, libhandy +, gtk4 +, libadwaita +, libsecret }: stdenv.mkDerivation rec { pname = "pika-backup"; - version = "0.3.5"; + version = "0.4.0"; src = fetchFromGitLab { domain = "gitlab.gnome.org"; owner = "World"; repo = "pika-backup"; rev = "v${version}"; - sha256 = "sha256-8jT3n+bTNjhm64AMS24Ju+San75ytfqFXloH/TOgO1g="; + hash = "sha256-vQ0hlwsrY0WOUc/ppleE+kKRGHPt/ScEChXrkukln3U="; }; cargoDeps = rustPlatform.fetchCargoTarball { inherit src; name = "${pname}-${version}"; - sha256 = "198bs4z7l22sh8ck7v46s45mj8zpfbg03n1xzc6pnafdd8hf3q15"; + hash = "sha256-IKUh5gkXTpmMToDaec+CpCIQqJjwJM2ZrmGQhZeTDsg="; }; patches = [ @@ -41,12 +40,10 @@ stdenv.mkDerivation rec { src = ./borg-path.patch; borg = "${borgbackup}/bin/borg"; }) - # Fix build with meson 0.61, can be removed on next release. - # https://gitlab.gnome.org/World/pika-backup/-/issues/156 - # https://github.com/mesonbuild/meson/issues/9441 (fetchpatch { - url = "https://gitlab.gnome.org/World/pika-backup/-/commit/54be149c88fd69fb9e74b7362fe7182863237869.patch"; - sha256 = "sha256-Tffxo5hlf/gSkp1GfyL4eHthX49tuTq6B+S53N8oA2M="; + name = "use-gtk4-update-icon-cache.patch"; + url = "https://gitlab.gnome.org/World/pika-backup/-/merge_requests/64.patch"; + hash = "sha256-AttGQGWealvTIvPwBl5M6FiC4Al/UD4/XckUAxM38SE="; }) ]; @@ -56,11 +53,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ desktop-file-utils + itstool meson ninja pkg-config python3 - wrapGAppsHook + wrapGAppsHook4 ] ++ (with rustPlatform; [ cargoSetupHook rust.cargo @@ -68,16 +66,14 @@ stdenv.mkDerivation rec { ]); buildInputs = [ - dbus - gdk-pixbuf - glib - gtk3 - libhandy + gtk4 + libadwaita + libsecret ]; meta = with lib; { description = "Simple backups based on borg"; - homepage = "https://wiki.gnome.org/Apps/PikaBackup"; + homepage = "https://apps.gnome.org/app/org.gnome.World.PikaBackup"; changelog = "https://gitlab.gnome.org/World/pika-backup/-/blob/v${version}/CHANGELOG.md"; license = licenses.gpl3Plus; maintainers = with maintainers; [ dotlambda ];