27 lines
725 B
Nix
27 lines
725 B
Nix
{ fetchurl, stdenv, pkgconfig, ucommon, libosip, libexosip, gnutls, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "sipwitch-1.2.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/sipwitch/${name}.tar.gz";
|
|
sha256 = "1c826832xi9p85l7c9va33xx8hx01m3jq49s0d1xl4c8kvri7bsj";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|