summary refs log tree commit diff
path: root/pkgs/servers/sip
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-01-19 21:17:05 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-01-19 21:17:05 +0000
commit02f2fd1837eba1ef0bcf7cbfadeae59409182d1d (patch)
treef6e34ea1fa371c303c4017aeb11296a429c94b14 /pkgs/servers/sip
parent954561a02d0c939c0469753b8cb7b15f1b825e73 (diff)
downloadnixpkgs-02f2fd1837eba1ef0bcf7cbfadeae59409182d1d.tar
nixpkgs-02f2fd1837eba1ef0bcf7cbfadeae59409182d1d.tar.gz
nixpkgs-02f2fd1837eba1ef0bcf7cbfadeae59409182d1d.tar.bz2
nixpkgs-02f2fd1837eba1ef0bcf7cbfadeae59409182d1d.tar.lz
nixpkgs-02f2fd1837eba1ef0bcf7cbfadeae59409182d1d.tar.xz
nixpkgs-02f2fd1837eba1ef0bcf7cbfadeae59409182d1d.tar.zst
nixpkgs-02f2fd1837eba1ef0bcf7cbfadeae59409182d1d.zip
Adding GNU SIP Witch.
svn path=/nixpkgs/trunk/; revision=25634
Diffstat (limited to 'pkgs/servers/sip')
-rw-r--r--pkgs/servers/sip/sipwitch/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/servers/sip/sipwitch/default.nix b/pkgs/servers/sip/sipwitch/default.nix
new file mode 100644
index 00000000000..014d850a527
--- /dev/null
+++ b/pkgs/servers/sip/sipwitch/default.nix
@@ -0,0 +1,26 @@
+{ fetchurl, stdenv, pkgconfig, ucommon, libosip, libexosip, openssl, zlib }:
+
+stdenv.mkDerivation rec {
+  name = "sipwitch-0.9.2";
+
+  src = fetchurl {
+    url = "mirror://gnu/sipwitch/${name}.tar.gz";
+    sha256 = "1xww6v4s45ss7v4548gxk6dgal5605cxnvdfsblmqn3ydzp6227h";
+  };
+
+  buildInputs = [ pkgconfig ucommon libosip libexosip openssl zlib ];
+
+  preConfigure = ''
+    export configureFlags="--sysconfdir=$out/etc"
+  '';
+
+  doCheck = true;
+
+  meta = {
+    description = "Secure peer-to-peer VoIP server that uses the SIP protocol";
+    homepage = http://www.gnu.org/software/sipwitch/;
+    license = "GPLv3+";
+    maintainers = with stdenv.lib.maintainers; [ viric ];
+    platforms = with stdenv.lib.platforms; linux;
+  };
+}