tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
aria2: 1.22.0 -> 1.23.0
José Romildo Malaquias
9 years ago
b767e999
e7c96842
+4
-3
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
aria2
default.nix
+4
-3
pkgs/tools/networking/aria2/default.nix
···
5
6
stdenv.mkDerivation rec {
7
name = "aria2-${version}";
8
-
version = "1.22.0";
9
10
src = fetchurl {
11
url = "https://github.com/tatsuhiro-t/aria2/releases/download/release-${version}/${name}.tar.xz";
12
-
sha256 = "12agwdvvkr34wqhyyfp418dj0k7nbr297qmcd3wj5kkn7brv6gxc";
13
};
14
15
nativeBuildInputs = [ pkgconfig ];
0
16
buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ] ++
17
stdenv.lib.optional stdenv.isDarwin Security;
18
···
25
description = "A lightweight, multi-protocol, multi-source, command-line download utility";
26
maintainers = with maintainers; [ koral jgeerds ];
27
license = licenses.gpl2Plus;
28
-
platforms = platforms.linux;
29
};
30
}
···
5
6
stdenv.mkDerivation rec {
7
name = "aria2-${version}";
8
+
version = "1.23.0";
9
10
src = fetchurl {
11
url = "https://github.com/tatsuhiro-t/aria2/releases/download/release-${version}/${name}.tar.xz";
12
+
sha256 = "14qz7686zxnhbaqj6l1hqpkykhpygm74h2mzwhh13gqmcj38alaq";
13
};
14
15
nativeBuildInputs = [ pkgconfig ];
16
+
17
buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ] ++
18
stdenv.lib.optional stdenv.isDarwin Security;
19
···
26
description = "A lightweight, multi-protocol, multi-source, command-line download utility";
27
maintainers = with maintainers; [ koral jgeerds ];
28
license = licenses.gpl2Plus;
29
+
platforms = platforms.unix;
30
};
31
}