2022-02-17 15:10:35 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, pkg-config
|
|
|
|
, python3
|
|
|
|
}:
|
|
|
|
|
2015-06-20 15:23:50 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "omniorb";
|
2022-02-17 15:10:35 +01:00
|
|
|
version = "4.3.0";
|
2015-06-20 15:23:50 +02:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
src = fetchurl {
|
2016-08-20 15:37:28 +02:00
|
|
|
url = "mirror://sourceforge/project/omniorb/omniORB/omniORB-${version}/omniORB-${version}.tar.bz2";
|
2022-02-17 15:10:35 +01:00
|
|
|
hash = "sha256-l2BFojQfTpqFBosh9L2SiZMpKTPu7O/qNy2wngIZ6t0=";
|
2015-06-20 15:23:50 +02:00
|
|
|
};
|
|
|
|
|
2022-02-17 15:10:35 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ python3 ];
|
2015-06-20 15:23:50 +02:00
|
|
|
|
2022-02-17 15:10:35 +01:00
|
|
|
enableParallelBuilding = true;
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-12 14:26:34 +01:00
|
|
|
|
2021-01-23 13:26:19 +01:00
|
|
|
meta = with lib; {
|
2022-02-17 15:10:35 +01:00
|
|
|
description = "A robust high performance CORBA ORB for C++ and Python";
|
|
|
|
longDescription = ''
|
|
|
|
omniORB is a robust high performance CORBA ORB for C++ and Python.
|
|
|
|
It is freely available under the terms of the GNU Lesser General Public License
|
|
|
|
(for the libraries),and GNU General Public License (for the tools).
|
|
|
|
omniORB is largely CORBA 2.6 compliant.
|
|
|
|
'';
|
2015-06-20 15:23:50 +02:00
|
|
|
homepage = "http://omniorb.sourceforge.net/";
|
2022-02-17 15:10:35 +01:00
|
|
|
license = with licenses; [ gpl2Plus lgpl21Plus ];
|
2015-06-20 15:23:50 +02:00
|
|
|
maintainers = with maintainers; [ smironov ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|