Update spandsp

This commit is contained in:
Michael Raskin 2014-09-02 14:15:51 +04:00
parent f78afc0b27
commit 7b6d33a591

View File

@ -1,10 +1,10 @@
{stdenv, fetchurl, audiofile, libtiff}: {stdenv, fetchurl, audiofile, libtiff}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "0.0.5"; version = "0.0.6";
name = "spandsp-${version}"; name = "spandsp-${version}";
src=fetchurl { src=fetchurl {
url = "http://www.soft-switch.org/downloads/spandsp/spandsp-${version}.tgz"; url = "http://www.soft-switch.org/downloads/spandsp/spandsp-${version}.tar.gz";
sha256 = "07f42a237c77b08fa765c3a148c83cdfa267bf24c0ab681d80b90d30dd0b3dbf"; sha256 = "0rclrkyspzk575v8fslzjpgp4y2s4x7xk3r55ycvpi4agv33l1fc";
}; };
buildInputs = []; buildInputs = [];
propagatedBuildInputs = [audiofile libtiff]; propagatedBuildInputs = [audiofile libtiff];
@ -13,6 +13,9 @@ stdenv.mkDerivation rec {
platforms = with stdenv.lib.platforms; linux; platforms = with stdenv.lib.platforms; linux;
maintainers = with stdenv.lib.maintainers; [raskin]; maintainers = with stdenv.lib.maintainers; [raskin];
license = with stdenv.lib.licenses; gpl2; license = with stdenv.lib.licenses; gpl2;
downloadPage = "http://www.soft-switch.org/downloads/spandsp/";
inherit version;
updateWalker = true;
}; };
} }