onedrive: 2.5.5 -> 2.5.6

Diff: https://github.com/abraunegg/onedrive/compare/v2.5.5...v2.5.6
This commit is contained in:
Doron Behar
2025-06-12 11:57:04 +00:00
committed by Peter Hoeg
parent 31468a1069
commit 734a6421c4
+4 -2
View File
@@ -10,6 +10,7 @@
pkg-config,
sqlite,
stdenv,
dbus,
systemd,
testers,
# Boolean flags
@@ -18,13 +19,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "onedrive";
version = "2.5.5";
version = "2.5.6";
src = fetchFromGitHub {
owner = "abraunegg";
repo = "onedrive";
rev = "v${finalAttrs.version}";
hash = "sha256-SoTkphmxWVAeSfqO7Vqm8bdPAP1hK57zFNR6N5elEOM=";
hash = "sha256-AFaz1RkrtsdTZfaWobdcADbzsAhbdCzJPkQX6Pa7hN8=";
};
outputs = [
@@ -42,6 +43,7 @@ stdenv.mkDerivation (finalAttrs: {
buildInputs = [
curl
dbus
libnotify
sqlite
] ++ lib.optionals withSystemd [ systemd ];