nixpkgs/pkgs/servers/mumsi/default.nix

28 lines
829 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, cmake, pkg-config, boost
, log4cpp, pjsip, openssl, alsa-lib, mumlib }:
2019-08-13 21:52:01 +00:00
with lib; stdenv.mkDerivation {
2019-02-10 17:30:16 +00:00
pname = "mumsi";
version = "unstable-2018-12-12";
src = fetchFromGitHub {
owner = "slomkowski";
repo = "mumsi";
rev = "961b75792f8da22fb5502e39edb286e32172d0b0";
sha256 = "0vrivl1fiiwjsz4v26nrn8ra3k9v0mcz7zjm2z319fw8hv6n1nrk";
};
buildInputs = [ boost log4cpp pkg-config pjsip mumlib openssl alsa-lib ];
nativeBuildInputs = [ cmake pkg-config ];
2019-02-10 17:30:16 +00:00
installPhase = ''
install -Dm555 mumsi $out/bin/mumsi
'';
meta = {
description = "SIP to Mumble gateway/bridge using PJSUA stack";
homepage = "https://github.com/slomkowski/mumsi";
maintainers = with maintainers; [ das_j ];
license = licenses.asl20;
platforms = platforms.linux;
};
}