1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00

aria2: update to version 1.17.1 and add sqlite support

also add missing pkgconfig dependency, so that the buildInputs zlib,
openssl, and sqlite are properly found.
This commit is contained in:
Jonas Hoersch 2013-07-04 16:45:56 +02:00 committed by Rok Garbas
parent 061462aef9
commit 5597e9a2a5

View file

@ -1,14 +1,14 @@
{ stdenv, fetchurl, openssl, libxml2, zlib }:
{ stdenv, fetchurl, pkgconfig, openssl, libxml2, sqlite, zlib }:
stdenv.mkDerivation rec {
name = "aria2-1.10.8";
name = "aria2-1.17.1";
src = fetchurl {
url = "mirror://sourceforge/aria2/stable/${name}/${name}.tar.bz2";
sha256 = "1cbcrxwdc6gp4l4zqg2i18zdg5ry5f9r3zj66kx6l5plwfjv9fdc";
sha256 = "0v0cdbv6v7fb4870rz5s9vscsj74fzbj70gsa2y4hysai4a0im3y";
};
buildInputs = [ openssl libxml2 zlib ];
buildInputs = [ pkgconfig openssl libxml2 sqlite zlib ];
meta = {
homepage = http://aria2.sourceforge.net/;