summary refs log tree commit diff
path: root/pkgs/applications/networking/sync
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2021-06-14 12:14:12 +0800
committerPeter Hoeg <peter@hoeg.com>2021-06-14 22:28:07 +0800
commit4489d3e844ef848b1eeb88804a3e81637e47a06a (patch)
treea90bb5987bd109a7ff61562d28a175752e88e8f4 /pkgs/applications/networking/sync
parent432fc2d9a67f92e05438dff5fdc2b39d33f77997 (diff)
downloadnixpkgs-4489d3e844ef848b1eeb88804a3e81637e47a06a.tar
nixpkgs-4489d3e844ef848b1eeb88804a3e81637e47a06a.tar.gz
nixpkgs-4489d3e844ef848b1eeb88804a3e81637e47a06a.tar.bz2
nixpkgs-4489d3e844ef848b1eeb88804a3e81637e47a06a.tar.lz
nixpkgs-4489d3e844ef848b1eeb88804a3e81637e47a06a.tar.xz
nixpkgs-4489d3e844ef848b1eeb88804a3e81637e47a06a.tar.zst
nixpkgs-4489d3e844ef848b1eeb88804a3e81637e47a06a.zip
onedrive: 2.4.11 -> 2.4.12
Diffstat (limited to 'pkgs/applications/networking/sync')
-rw-r--r--pkgs/applications/networking/sync/onedrive/default.nix28
1 files changed, 20 insertions, 8 deletions
diff --git a/pkgs/applications/networking/sync/onedrive/default.nix b/pkgs/applications/networking/sync/onedrive/default.nix
index b7e9f220f00..d53464df7a9 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;
   };
 }