nixpkgs-suyu/pkgs/applications/backup/pika-backup/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

83 lines
1.6 KiB
Nix
Raw Normal View History

2021-03-14 13:12:11 +01:00
{ lib
, stdenv
, fetchFromGitLab
2022-03-24 09:39:28 +01:00
, fetchpatch
2021-03-14 13:12:11 +01:00
, rustPlatform
, substituteAll
, desktop-file-utils
, itstool
2021-03-14 13:12:11 +01:00
, meson
, ninja
, pkg-config
, python3
, wrapGAppsHook4
2021-03-14 13:12:11 +01:00
, borgbackup
, gtk4
, libadwaita
, libsecret
2021-03-14 13:12:11 +01:00
}:
stdenv.mkDerivation rec {
pname = "pika-backup";
version = "0.4.0";
2021-03-14 13:12:11 +01:00
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "World";
repo = "pika-backup";
rev = "v${version}";
hash = "sha256-vQ0hlwsrY0WOUc/ppleE+kKRGHPt/ScEChXrkukln3U=";
2021-03-14 13:12:11 +01:00
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256-IKUh5gkXTpmMToDaec+CpCIQqJjwJM2ZrmGQhZeTDsg=";
2021-03-14 13:12:11 +01:00
};
patches = [
(substituteAll {
src = ./borg-path.patch;
borg = "${borgbackup}/bin/borg";
})
2022-03-24 09:39:28 +01:00
(fetchpatch {
name = "use-gtk4-update-icon-cache.patch";
url = "https://gitlab.gnome.org/World/pika-backup/-/merge_requests/64.patch";
hash = "sha256-AttGQGWealvTIvPwBl5M6FiC4Al/UD4/XckUAxM38SE=";
2022-03-24 09:39:28 +01:00
})
2021-03-14 13:12:11 +01:00
];
postPatch = ''
patchShebangs build-aux
'';
nativeBuildInputs = [
desktop-file-utils
itstool
2021-03-14 13:12:11 +01:00
meson
ninja
pkg-config
python3
wrapGAppsHook4
2021-03-14 13:12:11 +01:00
] ++ (with rustPlatform; [
cargoSetupHook
rust.cargo
rust.rustc
]);
buildInputs = [
gtk4
libadwaita
libsecret
2021-03-14 13:12:11 +01:00
];
meta = with lib; {
description = "Simple backups based on borg";
homepage = "https://apps.gnome.org/app/org.gnome.World.PikaBackup";
2021-03-14 13:12:11 +01:00
changelog = "https://gitlab.gnome.org/World/pika-backup/-/blob/v${version}/CHANGELOG.md";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dotlambda ];
platforms = platforms.linux;
2021-03-14 13:12:11 +01:00
};
}