osmo-ggsn: init at 1.10.1
This commit is contained in:
parent
f168d4993e
commit
1a4160212a
2 changed files with 49 additions and 0 deletions
47
pkgs/servers/osmocom/osmo-ggsn/default.nix
Normal file
47
pkgs/servers/osmocom/osmo-ggsn/default.nix
Normal file
|
@ -0,0 +1,47 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, autoreconfHook
|
||||
, pkg-config
|
||||
, libosmocore
|
||||
}:
|
||||
|
||||
let
|
||||
inherit (stdenv) isLinux;
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "osmo-ggsn";
|
||||
version = "1.10.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "osmocom";
|
||||
repo = "osmo-ggsn";
|
||||
rev = "${version}";
|
||||
hash = "sha256-j7Szh6lDZY9ji9VAdE3D73R/WBPDo85nVB8hr4HzO7M=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
echo "${version}" > .tarball-version
|
||||
'';
|
||||
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libosmocore
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
description = "Osmocom Gateway GPRS Support Node (GGSN), successor of OpenGGSN";
|
||||
homepage = "https://osmocom.org/projects/openggsn";
|
||||
license = lib.licenses.gpl2Only;
|
||||
maintainers = with lib.maintainers; [ janik ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
|
@ -32860,6 +32860,8 @@ with pkgs;
|
|||
|
||||
osmo-bsc = callPackage ../servers/osmocom/osmo-bsc { };
|
||||
|
||||
osmo-ggsn = callPackage ../servers/osmocom/osmo-ggsn { };
|
||||
|
||||
osmo-hlr = callPackage ../servers/osmocom/osmo-hlr { };
|
||||
|
||||
osmo-hnbgw = callPackage ../servers/osmocom/osmo-hnbgw { };
|
||||
|
|
Loading…
Reference in a new issue