about summary refs log tree commit diff
path: root/pkgs/development/tools/omniorb
diff options
context:
space:
mode:
authorSergey Mironov <grrwlf@gmail.com>2015-06-20 16:23:50 +0300
committerRok Garbas <rok@garbas.si>2015-07-23 20:42:35 +0200
commit9944d92dffef9e0d193d91260a44e6e39b99b411 (patch)
tree0c40e4fd2d7ea4153dc333476762d717534bdebd /pkgs/development/tools/omniorb
parent74bc5a2240ace50145ca6433b5d623ed56038843 (diff)
downloadnixlib-9944d92dffef9e0d193d91260a44e6e39b99b411.tar
nixlib-9944d92dffef9e0d193d91260a44e6e39b99b411.tar.gz
nixlib-9944d92dffef9e0d193d91260a44e6e39b99b411.tar.bz2
nixlib-9944d92dffef9e0d193d91260a44e6e39b99b411.tar.lz
nixlib-9944d92dffef9e0d193d91260a44e6e39b99b411.tar.xz
nixlib-9944d92dffef9e0d193d91260a44e6e39b99b411.tar.zst
nixlib-9944d92dffef9e0d193d91260a44e6e39b99b411.zip
omniorb: add the expression
Diffstat (limited to 'pkgs/development/tools/omniorb')
-rw-r--r--pkgs/development/tools/omniorb/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/tools/omniorb/default.nix b/pkgs/development/tools/omniorb/default.nix
new file mode 100644
index 000000000000..180e714b81e0
--- /dev/null
+++ b/pkgs/development/tools/omniorb/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchurl, python }:
+stdenv.mkDerivation rec {
+
+  name = "omniorb-${version}";
+
+  version = "4.2.0";
+
+  src = fetchurl rec {
+    url = "http://sourceforge.net/projects/omniorb/files/omniORB/omniORB-${version}/omniORB-${version}.tar.bz2";
+    sha256 = "1g58xcw4641wyisp9wscrkzaqrz0vf123dgy52qq2a3wk7y77hkl";
+  };
+
+  buildInputs = [ python ];
+
+  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.";
+    homepage    = "http://omniorb.sourceforge.net/";
+    license     = licenses.gpl2Plus;
+    maintainers = with maintainers; [ smironov ];
+    platforms   = platforms.unix;
+  };
+}