summary refs log tree commit diff
path: root/pkgs/development/libraries/spandsp
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2012-09-24 21:02:19 +0400
committerMichael Raskin <7c6f434c@mail.ru>2012-09-24 21:03:02 +0400
commit732811700a849e53b4411ec9395b12c3ce5277db (patch)
tree0e574d3d7e345faf9dad08682d19ecea9dfdd496 /pkgs/development/libraries/spandsp
parente9315d4a1cdc2e9f832eac6a76403a448e8d1abc (diff)
downloadnixlib-732811700a849e53b4411ec9395b12c3ce5277db.tar
nixlib-732811700a849e53b4411ec9395b12c3ce5277db.tar.gz
nixlib-732811700a849e53b4411ec9395b12c3ce5277db.tar.bz2
nixlib-732811700a849e53b4411ec9395b12c3ce5277db.tar.lz
nixlib-732811700a849e53b4411ec9395b12c3ce5277db.tar.xz
nixlib-732811700a849e53b4411ec9395b12c3ce5277db.tar.zst
nixlib-732811700a849e53b4411ec9395b12c3ce5277db.zip
Added BareSIP
Diffstat (limited to 'pkgs/development/libraries/spandsp')
-rw-r--r--pkgs/development/libraries/spandsp/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/libraries/spandsp/default.nix b/pkgs/development/libraries/spandsp/default.nix
new file mode 100644
index 000000000000..f88ab48e027e
--- /dev/null
+++ b/pkgs/development/libraries/spandsp/default.nix
@@ -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;
+  };
+}
+