summary refs log tree commit diff
diff options
context:
space:
mode:
authorOleksii Filonenko <brightone@protonmail.com>2019-11-13 12:52:20 +0200
committerRenaud <c0bw3b@users.noreply.github.com>2019-11-13 11:52:20 +0100
commit4f3c2a2410b13846a43db4afb85213fb92447b67 (patch)
treead401f9fd5c96565a715f6b94680be693b5f1c50
parent7ba54dc667641cf6111caefa5085516b69598c49 (diff)
downloadnixpkgs-4f3c2a2410b13846a43db4afb85213fb92447b67.tar
nixpkgs-4f3c2a2410b13846a43db4afb85213fb92447b67.tar.gz
nixpkgs-4f3c2a2410b13846a43db4afb85213fb92447b67.tar.bz2
nixpkgs-4f3c2a2410b13846a43db4afb85213fb92447b67.tar.lz
nixpkgs-4f3c2a2410b13846a43db4afb85213fb92447b67.tar.xz
nixpkgs-4f3c2a2410b13846a43db4afb85213fb92447b67.tar.zst
nixpkgs-4f3c2a2410b13846a43db4afb85213fb92447b67.zip
aria2: 1.34.0 -> 1.35.0
* aria2: 1.34.0 -> 1.35.0 (#73220)

- Remove the patch

* aria2: add filalex77 as a maintainer
-rw-r--r--pkgs/tools/networking/aria2/default.nix14
1 files changed, 3 insertions, 11 deletions
diff --git a/pkgs/tools/networking/aria2/default.nix b/pkgs/tools/networking/aria2/default.nix
index e086105e19e..0b4d77881b4 100644
--- a/pkgs/tools/networking/aria2/default.nix
+++ b/pkgs/tools/networking/aria2/default.nix
@@ -6,23 +6,15 @@
 
 stdenv.mkDerivation rec {
   pname = "aria2";
-  version = "1.34.0";
+  version = "1.35.0";
 
   src = fetchFromGitHub {
     owner = "aria2";
     repo = "aria2";
     rev = "release-${version}";
-    sha256 = "0hwqnjyszasr6049vr5mn48slb48v5kw39cbpbxa68ggmhj9bw6m";
+    sha256 = "195r3711ly3drf9jkygwdc2m7q99hiqlfrig3ip1127b837gzsf9";
   };
 
-  patches = [
-    # Remove with 1.35.0.
-    (fetchpatch {
-      url = https://github.com/aria2/aria2/commit/e8e04d6f22a507e8374651d3d2343cd9fb986993.patch;
-      sha256 = "1v27nqbsdjgg3ga4n0v9daq21m3cmdpy7d08kp32200pzag87f4y";
-    })
-  ];
-
   nativeBuildInputs = [ pkgconfig autoreconfHook sphinx ];
 
   buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ] ++
@@ -44,6 +36,6 @@ stdenv.mkDerivation rec {
     description = "A lightweight, multi-protocol, multi-source, command-line download utility";
     license = licenses.gpl2Plus;
     platforms = platforms.unix;
-    maintainers = with maintainers; [ koral ];
+    maintainers = with maintainers; [ filalex77 koral ];
   };
 }