nixpkgs/pkgs/development/tools/omniorb/default.nix

25 lines
851 B
Nix
Raw Normal View History

2016-12-08 11:23:25 +00:00
{ stdenv, fetchurl, python2 }:
2015-06-20 13:23:50 +00:00
stdenv.mkDerivation rec {
pname = "omniorb";
2015-06-20 13:23:50 +00:00
version = "4.2.3";
2015-06-20 13:23:50 +00:00
2019-08-13 21:52:01 +00:00
src = fetchurl {
url = "mirror://sourceforge/project/omniorb/omniORB/omniORB-${version}/omniORB-${version}.tar.bz2";
sha256 = "1jlb0wps6311dmhnphn64gv46z0bl8grch4fd9dcx5dlib02lh96";
2015-06-20 13:23:50 +00:00
};
2016-12-08 11:23:25 +00:00
buildInputs = [ python2 ];
2015-06-20 13:23:50 +00:00
hardeningDisable = [ "format" ];
2016-02-12 13:26:34 +00:00
2015-06-20 13:23:50 +00:00
meta = with stdenv.lib; {
description = "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 13:23:50 +00:00
homepage = "http://omniorb.sourceforge.net/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ smironov ];
platforms = platforms.unix;
};
}