axel: 2.7 -> 2.11

This commit is contained in:
Pascal Wittmann
2016-11-19 10:51:56 +01:00
parent b69f568f4c
commit 4cdfa0b96a
2 changed files with 9 additions and 5 deletions
+6 -4
View File
@@ -1,15 +1,17 @@
{ stdenv, fetchurl, gettext, autoreconfHook }:
{ stdenv, fetchurl, autoreconfHook, gettext, libssl }:
stdenv.mkDerivation rec {
name = "axel-${version}";
version = "2.7";
version = "2.11";
src = fetchurl {
url = "mirror://debian/pool/main/a/axel/axel_${version}.orig.tar.gz";
sha256 = "174x4bp4gcwmpf94hdsdxlpk7q7ldgpsicry7x2pa9zw4yz86wl0";
sha256 = "05askz9pi8kvjyn66rszjfg9arwdzl72jwd38q9h9n5s37vqslky";
};
buildInputs = [ gettext autoreconfHook ];
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ gettext libssl ];
installFlags = [ "ETCDIR=$(out)/etc" ];