mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +00:00
Revert "Merge pull request #229369 from markuskowa/add-libsomo-s"
This reverts commitcaa013bd88
, reversing changes made to42aaea3606
.
This commit is contained in:
parent
5ff59e34f9
commit
26e6811290
@ -1,39 +0,0 @@
|
||||
{ lib, stdenv, fetchgit, autoreconfHook, pkg-config
|
||||
, libosmocore, ortp, bctoolbox
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libosmo-abis";
|
||||
version = "1.4.0";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://gitea.osmocom.org/osmocom/libosmo-abis";
|
||||
rev = version;
|
||||
sha256 = "sha256-RKJis0Ur3Y0LximNQl+hm6GENg8t2E1S++2c+63D2pQ=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
echo "${version}" > .tarball-version
|
||||
'';
|
||||
|
||||
configureFlags = [ "--disable-dahdi" ];
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libosmocore
|
||||
ortp
|
||||
bctoolbox
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "GSM A-bis interface library";
|
||||
homepage = "https://osmocom.org/projects/libosmo-abis";
|
||||
maintainers = [ maintainers.markuskowa ];
|
||||
platforms = platforms.linux;
|
||||
license = licenses.agpl3Only;
|
||||
};
|
||||
}
|
@ -1,37 +0,0 @@
|
||||
{ lib, stdenv, fetchgit, autoreconfHook, pkg-config
|
||||
, libosmocore, lksctp-tools
|
||||
}:
|
||||
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libosmo-netif";
|
||||
version = "1.3.0";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://gitea.osmocom.org/osmocom/libosmo-netif";
|
||||
rev = version;
|
||||
sha256 = "sha256-PhGi/6JVO8tXxzfGwEKUB/GdrgCJkqROo26TPU+O9Sg=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
echo "${version}" > .tarball-version
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libosmocore
|
||||
lksctp-tools
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Higher-layer GSM cellular communications protocol implementation";
|
||||
homepage = "https://gitea.osmocom.org/osmocom/libosmo-netif";
|
||||
maintainers = [ maintainers.markuskowa ];
|
||||
platforms = platforms.linux;
|
||||
license = licenses.agpl3Only;
|
||||
};
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
@ -22236,12 +22236,6 @@ with pkgs;
|
||||
|
||||
libosmo-sccp = callPackage ../servers/osmocom/libosmo-sccp { };
|
||||
|
||||
libosmo-abis = callPackage ../development/libraries/libosmo-abis { };
|
||||
|
||||
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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user