ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
62 lines
1 KiB
Nix
62 lines
1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, libosmocore
|
|
, sqlite
|
|
, libosmoabis
|
|
, libosmo-netif
|
|
, libosmo-sccp
|
|
, osmo-mgw
|
|
, osmo-hlr
|
|
, lksctp-tools
|
|
}:
|
|
|
|
let
|
|
inherit (stdenv) isLinux;
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "osmo-msc";
|
|
version = "1.11.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "osmocom";
|
|
repo = "osmo-msc";
|
|
rev = version;
|
|
hash = "sha256-JsfZUkXCpyLucaj0NL+MRCr2sWSCbuZRsipi4O7kFRQ=";
|
|
};
|
|
|
|
postPatch = ''
|
|
echo "${version}" > .tarball-version
|
|
'';
|
|
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libosmocore
|
|
sqlite
|
|
libosmoabis
|
|
libosmo-netif
|
|
libosmo-sccp
|
|
osmo-mgw
|
|
osmo-hlr
|
|
lksctp-tools
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "Osmocom implementation of 3GPP Mobile Swtiching Centre (MSC)";
|
|
mainProgram = "osmo-msc";
|
|
homepage = "https://osmocom.org/projects/osmomsc/wiki";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = with lib.maintainers; [ janik ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|