osmo-sip-connector: init at 1.6.2
This commit is contained in:
parent
9933b4d78e
commit
b475406db7
2 changed files with 53 additions and 0 deletions
51
pkgs/servers/osmocom/osmo-sip-connector/default.nix
Normal file
51
pkgs/servers/osmocom/osmo-sip-connector/default.nix
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, autoreconfHook
|
||||||
|
, pkg-config
|
||||||
|
, libosmocore
|
||||||
|
, sofia_sip
|
||||||
|
, glib
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
inherit (stdenv) isLinux;
|
||||||
|
in
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "osmo-sip-connector";
|
||||||
|
version = "1.6.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "osmocom";
|
||||||
|
repo = "osmo-sip-connector";
|
||||||
|
rev = "${version}";
|
||||||
|
hash = "sha256-vsPtNeh6Yi5fQb+E90OF4/Hnjl9T5nMf9EMBhzpIA2I=";
|
||||||
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
echo "${version}" > .tarball-version
|
||||||
|
'';
|
||||||
|
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
autoreconfHook
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libosmocore
|
||||||
|
sofia_sip
|
||||||
|
glib
|
||||||
|
];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "This implements an interface between the MNCC (Mobile Network Call Control) interface of OsmoMSC (and also previously OsmoNITB) and SIP";
|
||||||
|
homepage = "https://osmocom.org/projects/osmo-sip-conector";
|
||||||
|
license = lib.licenses.agpl3Plus;
|
||||||
|
maintainers = with lib.maintainers; [ janik ];
|
||||||
|
platforms = lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -32880,6 +32880,8 @@ with pkgs;
|
||||||
|
|
||||||
osmo-sgsn = callPackage ../servers/osmocom/osmo-sgsn { };
|
osmo-sgsn = callPackage ../servers/osmocom/osmo-sgsn { };
|
||||||
|
|
||||||
|
osmo-sip-connector = callPackage ../servers/osmocom/osmo-sip-connector { };
|
||||||
|
|
||||||
osmscout-server = libsForQt5.callPackage ../applications/misc/osmscout-server { };
|
osmscout-server = libsForQt5.callPackage ../applications/misc/osmscout-server { };
|
||||||
|
|
||||||
palemoon = callPackage ../applications/networking/browsers/palemoon { };
|
palemoon = callPackage ../applications/networking/browsers/palemoon { };
|
||||||
|
|
Loading…
Reference in a new issue