From 4489d3e844ef848b1eeb88804a3e81637e47a06a Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Mon, 14 Jun 2021 12:14:12 +0800 Subject: onedrive: 2.4.11 -> 2.4.12 --- .../networking/sync/onedrive/default.nix | 28 +++++++++++++++------- 1 file changed, 20 insertions(+), 8 deletions(-) (limited to 'pkgs/applications/networking/sync') diff --git a/pkgs/applications/networking/sync/onedrive/default.nix b/pkgs/applications/networking/sync/onedrive/default.nix index b7e9f220f0090..d53464df7a976 100644 --- a/pkgs/applications/networking/sync/onedrive/default.nix +++ b/pkgs/applications/networking/sync/onedrive/default.nix @@ -1,22 +1,34 @@ -{ stdenv, lib, fetchFromGitHub, autoreconfHook, ldc, installShellFiles, pkg-config -, curl, sqlite, libnotify -, withSystemd ? stdenv.isLinux, systemd ? null }: +{ stdenv +, lib +, fetchFromGitHub +, autoreconfHook +, ldc +, installShellFiles +, pkg-config +, curl +, sqlite +, libnotify +, withSystemd ? stdenv.isLinux +, systemd +}: stdenv.mkDerivation rec { pname = "onedrive"; - version = "2.4.11"; + version = "2.4.12"; src = fetchFromGitHub { owner = "abraunegg"; repo = pname; rev = "v${version}"; - sha256 = "sha256-ioOrkhVeHHqIjoEXcYo8ATJW+2+nZOehf3XbAJUEXpY="; + sha256 = "sha256-rG9W90+wGLnhnfhqJjUIFGP6ZcmaxGkrdhPxQVRyxoc="; }; nativeBuildInputs = [ autoreconfHook ldc installShellFiles pkg-config ]; buildInputs = [ - curl sqlite libnotify + curl + sqlite + libnotify ] ++ lib.optional withSystemd systemd; configureFlags = [ @@ -36,8 +48,8 @@ stdenv.mkDerivation rec { meta = with lib; { description = "A complete tool to interact with OneDrive on Linux"; homepage = "https://github.com/abraunegg/onedrive"; - license = licenses.gpl3; - maintainers = with maintainers; [ srgom ianmjones ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ srgom peterhoeg ]; platforms = platforms.linux; }; } -- cgit 1.4.1