lol

omniorb: 4.2.4 -> 4.3.0

* omniorb: 4.2.4 -> 4.3.0 (#159693)

* omniorb: use Python 3.x
shorten meta.description
move the rest to meta.longDescription
add LGPL-2.1+ to meta.licenses (used by libs)
enable parallel building

Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>

authored by

R. RyanTM
Renaud
and committed by
GitHub
2be13a1e 2f7ef979

+20 -7
+20 -7
pkgs/development/tools/omniorb/default.nix
··· 1 - { lib, stdenv, fetchurl, python2 }: 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , pkg-config 5 + , python3 6 + }: 7 + 2 8 stdenv.mkDerivation rec { 3 9 4 10 pname = "omniorb"; 5 - 6 - version = "4.2.4"; 11 + version = "4.3.0"; 7 12 8 13 src = fetchurl { 9 14 url = "mirror://sourceforge/project/omniorb/omniORB/omniORB-${version}/omniORB-${version}.tar.bz2"; 10 - sha256 = "0vvsvi5nx4k7kk4qh1pkf3f5fpz7wv4rsdna4hayihbnvz81rh18"; 15 + hash = "sha256-l2BFojQfTpqFBosh9L2SiZMpKTPu7O/qNy2wngIZ6t0="; 11 16 }; 12 17 13 - buildInputs = [ python2 ]; 18 + nativeBuildInputs = [ pkg-config ]; 19 + buildInputs = [ python3 ]; 14 20 21 + enableParallelBuilding = true; 15 22 hardeningDisable = [ "format" ]; 16 23 17 24 meta = with lib; { 18 - description = "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"; 25 + description = "A robust high performance CORBA ORB for C++ and Python"; 26 + longDescription = '' 27 + omniORB is a robust high performance CORBA ORB for C++ and Python. 28 + It is freely available under the terms of the GNU Lesser General Public License 29 + (for the libraries),and GNU General Public License (for the tools). 30 + omniORB is largely CORBA 2.6 compliant. 31 + ''; 19 32 homepage = "http://omniorb.sourceforge.net/"; 20 - license = licenses.gpl2Plus; 33 + license = with licenses; [ gpl2Plus lgpl21Plus ]; 21 34 maintainers = with maintainers; [ smironov ]; 22 35 platforms = platforms.unix; 23 36 };