Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7ba54dc66764
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4f3c2a2410b1
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 13, 2019

  1. aria2: 1.34.0 -> 1.35.0

    * aria2: 1.34.0 -> 1.35.0 (#73220)
    
    - Remove the patch
    
    * aria2: add filalex77 as a maintainer
    Br1ght0ne authored and c0bw3b committed Nov 13, 2019
    Copy the full SHA
    4f3c2a2 View commit details
Showing with 3 additions and 11 deletions.
  1. +3 −11 pkgs/tools/networking/aria2/default.nix
14 changes: 3 additions & 11 deletions pkgs/tools/networking/aria2/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}