Added BareSIP

This commit is contained in:
Michael Raskin
2012-09-24 21:03:02 +04:00
parent e9315d4a1c
commit 732811700a
7 changed files with 120 additions and 2 deletions
@@ -0,0 +1,18 @@
{stdenv, fetchurl, audiofile, libtiff}:
stdenv.mkDerivation rec {
version = "0.0.5";
name = "spandsp-${version}";
src=fetchurl {
url = "http://www.soft-switch.org/downloads/spandsp/spandsp-${version}.tgz";
sha256 = "07f42a237c77b08fa765c3a148c83cdfa267bf24c0ab681d80b90d30dd0b3dbf";
};
buildInputs = [];
propagatedBuildInputs = [audiofile libtiff];
meta = {
homepage = "http://www.creytiv.com/baresip.html";
platforms = with stdenv.lib.platforms; linux;
maintainers = with stdenv.lib.maintainers; [raskin];
license = with stdenv.lib.licenses; gpl2;
};
}