osmo-pcu: init at 1.2.0
This commit is contained in:
parent
405fe5f5b2
commit
0c051ec4f2
2 changed files with 50 additions and 0 deletions
48
pkgs/servers/osmocom/osmo-pcu/default.nix
Normal file
48
pkgs/servers/osmocom/osmo-pcu/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -32874,6 +32874,8 @@ with pkgs;
|
||||||
|
|
||||||
osmo-msc = callPackage ../servers/osmocom/osmo-msc { };
|
osmo-msc = callPackage ../servers/osmocom/osmo-msc { };
|
||||||
|
|
||||||
|
osmo-pcu = callPackage ../servers/osmocom/osmo-pcu { };
|
||||||
|
|
||||||
osmo-sgsn = callPackage ../servers/osmocom/osmo-sgsn { };
|
osmo-sgsn = callPackage ../servers/osmocom/osmo-sgsn { };
|
||||||
|
|
||||||
osmscout-server = libsForQt5.callPackage ../applications/misc/osmscout-server { };
|
osmscout-server = libsForQt5.callPackage ../applications/misc/osmscout-server { };
|
||||||
|
|
Loading…
Reference in a new issue