osmo-pcu: init at 1.2.0

This commit is contained in:
Janik H 2023-04-19 15:26:14 +02:00
parent 405fe5f5b2
commit 0c051ec4f2
2 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,48 @@
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, pkg-config
, libosmocore
,
}:
let
inherit (stdenv) isLinux;
in
stdenv.mkDerivation rec {
pname = "osmo-pcu";
version = "1.2.0";
src = fetchFromGitHub {
owner = "osmocom";
repo = "osmo-pcu";
rev = "${version}";
hash = "sha256-wZLTDvqVxP0FXV0VQH5KuigwbgzBipwL5JkTDp5Mzrc=";
};
postPatch = ''
echo "${version}" > .tarball-version
'';
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
libosmocore
];
enableParallelBuilding = true;
meta = {
description = "Osmocom Packet control Unit (PCU): Network-side GPRS (RLC/MAC); BTS- or BSC-colocated";
homepage = "https://osmocom.org/projects/osmopcu";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ janik ];
platforms = lib.platforms.linux;
};
}

View File

@ -32874,6 +32874,8 @@ with pkgs;
osmo-msc = callPackage ../servers/osmocom/osmo-msc { };
osmo-pcu = callPackage ../servers/osmocom/osmo-pcu { };
osmo-sgsn = callPackage ../servers/osmocom/osmo-sgsn { };
osmscout-server = libsForQt5.callPackage ../applications/misc/osmscout-server { };