libosmo-sccp: init at 1.7.0

This commit is contained in:
Markus Kowalewski 2023-05-01 23:29:16 +02:00
parent 44de9e2412
commit 4fa350d506
No known key found for this signature in database
GPG key ID: D865C8A91D7025EB
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ lib, stdenv, fetchgit, autoreconfHook, pkg-config
, libosmocore, libosmo-netif, lksctp-tools
}:
stdenv.mkDerivation rec {
pname = "libosmo-sccp";
version = "1.7.0";
src = fetchgit {
url = "https://gitea.osmocom.org/osmocom/libosmo-sccp";
rev = version;
sha256 = "sha256-ScJZke9iNmFc9XXqtRjb24ZzKfa5EYws5PDNhcZFb7U=";
};
postPatch = ''
echo "${version}" > .tarball-version
'';
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
libosmocore
libosmo-netif
lksctp-tools
];
meta = with lib; {
description = "Implementation of telecom signaling protocols and OsmoSTP";
homepage = "https://osmocom.org/projects/osmo-stp/wiki";
maintainers = [ maintainers.markuskowa ];
platforms = platforms.linux;
license = licenses.agpl3Only;
};
}

View file

@ -22109,6 +22109,8 @@ with pkgs;
libosmo-netif = callPackage ../development/libraries/libosmo-netif { };
libosmo-sccp = callPackage ../development/libraries/libosmo-sccp { };
libosmscout = libsForQt5.callPackage ../development/libraries/libosmscout { };
libotr = callPackage ../development/libraries/libotr { };