nixpkgs/pkgs/servers/sip/sipwitch/default.nix
Ludovic Courtès 03e6e14986 GNU SIP Witch 1.2.3.
svn path=/nixpkgs/trunk/; revision=33706
2012-04-09 20:51:40 +00:00

27 lines
725 B
Nix

{ fetchurl, stdenv, pkgconfig, ucommon, libosip, libexosip, gnutls, zlib }:
stdenv.mkDerivation rec {
name = "sipwitch-1.2.3";
src = fetchurl {
url = "mirror://gnu/sipwitch/${name}.tar.gz";
sha256 = "0vc7x061m2jdj8hwpw56yiz8ij07x058vm1rm1dz7w98slpkcj6d";
};
buildInputs = [ pkgconfig ucommon libosip libexosip gnutls 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;
};
}