mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
aria2: 1.18.8 -> 1.18.9
This commit is contained in:
parent
b9cc04329b
commit
a3f0c7bff4
1 changed files with 6 additions and 3 deletions
|
@ -1,17 +1,20 @@
|
|||
{ stdenv, fetchurl, pkgconfig, openssl, libxml2, sqlite, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "aria2-1.18.8";
|
||||
name = "aria2-${version}";
|
||||
version = "1.18.9";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/aria2/stable/${name}/${name}.tar.bz2";
|
||||
sha256 = "1lpcdpkc22prkzhqrhrd6ccra6vpf2w8mla0z3jv26dqafaxif6b";
|
||||
sha256 = "1cn4g4mcrnw67y23970a9bngl8nf2x9hh82lc59gz3xyxn8wljz2";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig openssl libxml2 sqlite zlib ];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://aria2.sourceforge.net/;
|
||||
description = "A lightweight, multi-protocol, multi-source, command-line download utility";
|
||||
maintainers = [ maintainers.koral ];
|
||||
license = licenses.gpl2Plus;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue