tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
axel: 2.15 -> 2.16.1
Pascal Wittmann
8 years ago
01ef7593
90c289bf
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
axel
default.nix
+4
-4
pkgs/tools/networking/axel/default.nix
···
1
-
{ stdenv, fetchurl, autoreconfHook, gettext, libssl }:
2
3
stdenv.mkDerivation rec {
4
name = "axel-${version}";
5
-
version = "2.15";
6
7
src = fetchurl {
8
url = "mirror://debian/pool/main/a/axel/axel_${version}.orig.tar.gz";
9
-
sha256 = "0wm16s129615i7rw48422q3x3ixr4v2p9942p0s6qk2fjlc3y8hf";
10
};
11
12
-
nativeBuildInputs = [ autoreconfHook ];
13
14
buildInputs = [ gettext libssl ];
15
···
1
+
{ stdenv, fetchurl, autoreconfHook, pkgconfig, gettext, libssl }:
2
3
stdenv.mkDerivation rec {
4
name = "axel-${version}";
5
+
version = "2.16.1";
6
7
src = fetchurl {
8
url = "mirror://debian/pool/main/a/axel/axel_${version}.orig.tar.gz";
9
+
sha256 = "0v3hgqrpqqqkj8ghaky88a0wpnpwqd72vd04ywlbhgfzfkfrllk4";
10
};
11
12
+
nativeBuildInputs = [ autoreconfHook pkgconfig ];
13
14
buildInputs = [ gettext libssl ];
15