2012-09-24 18:02:19 +01:00
|
|
|
{stdenv, fetchurl, audiofile, libtiff}:
|
|
|
|
stdenv.mkDerivation rec {
|
2014-09-02 11:15:51 +01:00
|
|
|
version = "0.0.6";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "spandsp";
|
2012-09-24 18:02:19 +01:00
|
|
|
src=fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.soft-switch.org/downloads/spandsp/spandsp-${version}.tar.gz";
|
2014-09-02 11:15:51 +01:00
|
|
|
sha256 = "0rclrkyspzk575v8fslzjpgp4y2s4x7xk3r55ycvpi4agv33l1fc";
|
2012-09-24 18:02:19 +01:00
|
|
|
};
|
2019-09-29 10:05:22 +01:00
|
|
|
|
2019-09-25 16:13:59 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2019-09-29 10:05:22 +01:00
|
|
|
|
2012-09-24 18:02:19 +01:00
|
|
|
propagatedBuildInputs = [audiofile libtiff];
|
|
|
|
meta = {
|
2019-11-17 08:43:55 +00:00
|
|
|
description = "A portable and modular SIP User-Agent with audio and video support";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://www.creytiv.com/baresip.html;
|
2012-09-24 18:02:19 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [raskin];
|
2015-05-28 18:20:29 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2014-09-02 11:15:51 +01:00
|
|
|
downloadPage = "http://www.soft-switch.org/downloads/spandsp/";
|
|
|
|
inherit version;
|
|
|
|
updateWalker = true;
|
2012-09-24 18:02:19 +01:00
|
|
|
};
|
|
|
|
}
|