2017-03-11 00:01:55 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libtool, perl }:
|
2016-02-19 17:01:32 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "ace";
|
2020-08-11 18:06:08 +01:00
|
|
|
version = "6.5.10";
|
2017-03-11 00:01:55 +00:00
|
|
|
|
2016-02-19 17:01:32 +00:00
|
|
|
src = fetchurl {
|
2017-03-11 00:01:55 +00:00
|
|
|
url = "http://download.dre.vanderbilt.edu/previous_versions/ACE-${version}.tar.bz2";
|
2020-08-11 18:06:08 +01:00
|
|
|
sha256 = "1qnq63r9cnaaqb5yrbb7apr7kjl6x31wfclizplri3lj4rwl7plh";
|
2016-02-19 17:01:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-03-11 00:01:55 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig libtool ];
|
|
|
|
buildInputs = [ perl ];
|
2016-02-19 17:01:32 +00:00
|
|
|
|
2020-08-11 18:06:08 +01:00
|
|
|
NIX_CFLAGS_COMPILE = [
|
|
|
|
"-Wno-error=format-security"
|
|
|
|
];
|
|
|
|
|
2016-02-19 17:01:32 +00:00
|
|
|
patchPhase = ''substituteInPlace ./MPC/prj_install.pl \
|
|
|
|
--replace /usr/bin/perl "${perl}/bin/perl"'';
|
2019-08-18 11:53:44 +01:00
|
|
|
|
2016-02-19 17:01:32 +00:00
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2017-03-11 00:01:55 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-02-19 17:01:32 +00:00
|
|
|
description = "ADAPTIVE Communication Environment";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.dre.vanderbilt.edu/~schmidt/ACE.html";
|
2017-03-11 00:01:55 +00:00
|
|
|
license = licenses.doc;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.nico202 ];
|
2016-02-19 17:01:32 +00:00
|
|
|
};
|
|
|
|
}
|