Skip to content

Commit

Permalink
onedrive: patch for openssl error
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben9986 committed Dec 6, 2024
1 parent 94f4b23 commit 1e3e640
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion pkgs/by-name/on/onedrive/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
autoreconfHook,
curl,
fetchFromGitHub,
fetchpatch,
installShellFiles,
ldc,
libnotify,
Expand All @@ -17,7 +18,7 @@

stdenv.mkDerivation (finalAttrs: {
pname = "onedrive";
version = "2.5.3";
version = "2.5.3-1";

src = fetchFromGitHub {
owner = "abraunegg";
Expand All @@ -26,6 +27,15 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-Lek1tW0alQQvlOHpz//M/y4iJY3PWRkcmXGLwjCLozk=";
};

patches = [
# remove when updating to v2.5.4
(fetchpatch {
name = "fix-openssl-version-check-error.patch";
url = "https://patch-diff.githubusercontent.com/raw/abraunegg/onedrive/pull/2981.patch";
hash = "sha256-IMXCKYvdpk9Drb/bNDlVQl/hUhi1It0jQpFbT3qKzm0=";
})
];

outputs = [
"out"
"doc"
Expand Down

0 comments on commit 1e3e640

Please sign in to comment.