2012-09-24 17:02:19 +00:00
|
|
|
{stdenv, fetchurl, audiofile, libtiff}:
|
|
|
|
stdenv.mkDerivation rec {
|
2014-09-02 10:15:51 +00:00
|
|
|
version = "0.0.6";
|
2012-09-24 17:02:19 +00:00
|
|
|
name = "spandsp-${version}";
|
|
|
|
src=fetchurl {
|
2014-09-02 10:15:51 +00:00
|
|
|
url = "http://www.soft-switch.org/downloads/spandsp/spandsp-${version}.tar.gz";
|
|
|
|
sha256 = "0rclrkyspzk575v8fslzjpgp4y2s4x7xk3r55ycvpi4agv33l1fc";
|
2012-09-24 17:02:19 +00:00
|
|
|
};
|
|
|
|
buildInputs = [];
|
|
|
|
propagatedBuildInputs = [audiofile libtiff];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.creytiv.com/baresip.html";
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [raskin];
|
2015-05-28 17:20:29 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2014-09-02 10:15:51 +00:00
|
|
|
downloadPage = "http://www.soft-switch.org/downloads/spandsp/";
|
|
|
|
inherit version;
|
|
|
|
updateWalker = true;
|
2012-09-24 17:02:19 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|