mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
FusionPBX Module
This commit is contained in:
parent
27d63cc2d0
commit
a74450a8de
6 changed files with 491 additions and 0 deletions
30
pkgs/fusionpbx/default.nix
Normal file
30
pkgs/fusionpbx/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue