libosmo-sccp: init at 1.7.0
This commit is contained in:
parent
1457d54ab1
commit
de71779899
48
pkgs/servers/osmocom/libosmo-sccp/default.nix
Normal file
48
pkgs/servers/osmocom/libosmo-sccp/default.nix
Normal file
@ -0,0 +1,48 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, autoreconfHook
|
||||
, fetchFromGitHub
|
||||
, lksctp-tools
|
||||
, pkg-config
|
||||
, libosmocore
|
||||
, libosmo-netif
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libosmo-sccp";
|
||||
version = "1.7.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "osmocom";
|
||||
repo = "libosmo-sccp";
|
||||
rev = version;
|
||||
hash = "sha256-ScJZke9iNmFc9XXqtRjb24ZzKfa5EYws5PDNhcZFb7U=";
|
||||
};
|
||||
|
||||
configureFlags = [ "--with-systemdsystemunitdir=$out" ];
|
||||
|
||||
postPatch = ''
|
||||
echo "${version}" > .tarball-version
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
lksctp-tools
|
||||
libosmocore
|
||||
libosmo-netif
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "SCCP + SIGTRAN (SUA/M3UA) libraries as well as OsmoSTP";
|
||||
homepage = "https://osmocom.org/projects/libosmo-sccp";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ janik ];
|
||||
};
|
||||
}
|
@ -22008,6 +22008,8 @@ with pkgs;
|
||||
|
||||
libosmo-netif = callPackage ../servers/osmocom/libosmo-netif { };
|
||||
|
||||
libosmo-sccp = callPackage ../servers/osmocom/libosmo-sccp { };
|
||||
|
||||
libosmscout = libsForQt5.callPackage ../development/libraries/libosmscout { };
|
||||
|
||||
libotr = callPackage ../development/libraries/libotr { };
|
||||
|
Loading…
Reference in New Issue
Block a user