FusionPBX Module

This commit is contained in:
kat witch 2021-08-15 02:10:38 +01:00
parent 27d63cc2d0
commit a74450a8de
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
6 changed files with 491 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{
lib,
stdenv,
fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "fusionpbx";
version = "master";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "2b8d011321ee5f2ffba967e38fcc8c542f378502";
sha256 = "0fsmf67hrddz6aqjrjjqxa72iw108z2skwhn9jb3p465xfq7a9ij";
};
installPhase = ''
mkdir -p $out
mv * $out
'';
meta = with lib; {
description = "A full-featured domain based multi-tenant PBX and voice switch for FreeSWITCH.";
homepage = "https://www.fusionpbx.com/";
license = with licenses; mpl11;
maintainers = with maintainers; [ kittywitch ];
platforms = with platforms; unix;
};
}