summary refs log tree commit diff
path: root/pkgs/development/libraries/ace
diff options
context:
space:
mode:
author= <anothersms@gmail.com>2016-02-19 18:01:32 +0100
committer= <anothersms@gmail.com>2016-02-24 22:08:29 +0100
commita5ed58445fb5a4a21f02fad57020ac90e2eb649b (patch)
tree2822ded182177c934b9d07f247bb0c39851a7169 /pkgs/development/libraries/ace
parent14f1ff80ce42fcfb4ee8e85e7882b3fac8f97cde (diff)
yarp (+ libace): init at 2.3.64
Diffstat (limited to 'pkgs/development/libraries/ace')
-rw-r--r--pkgs/development/libraries/ace/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/development/libraries/ace/default.nix b/pkgs/development/libraries/ace/default.nix
new file mode 100644
index 0000000000000..10ba217175c3d
--- /dev/null
+++ b/pkgs/development/libraries/ace/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchurl, pkgconfig, libtool, perl
+}:
+
+stdenv.mkDerivation rec {
+  name = "ace-${version}";
+  version = "6.3.3";
+  src = fetchurl {
+    url=http://download.dre.vanderbilt.edu/previous_versions/ACE-6.3.3.tar.bz2;
+    sha256 = "124qk205v8rx8p7rfigsargrpxjx3mh4nr99nlyk9csdc9gy8qpk";
+  };
+
+  enableParallelBuilding = true;
+
+  buildInputs = [ pkgconfig libtool perl ];
+
+  patchPhase = ''substituteInPlace ./MPC/prj_install.pl \
+    --replace /usr/bin/perl "${perl}/bin/perl"'';
+  
+  preConfigure = ''
+    export INSTALL_PREFIX=$out
+    export ACE_ROOT=$(pwd)
+    export LD_LIBRARY_PATH="$ACE_ROOT/ace:$ACE_ROOT/lib"
+    echo '#include "ace/config-linux.h"' > ace/config.h
+    echo 'include $(ACE_ROOT)/include/makeinclude/platform_linux.GNU'\
+    > include/makeinclude/platform_macros.GNU
+  '';
+
+meta = {
+    description = "ADAPTIVE Communication Environment";
+    homepage = http://www.dre.vanderbilt.edu/~schmidt/ACE.html;
+    license = stdenv.lib.licenses.doc;
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.nico202 ];
+  };
+}
+