2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, libtool, perl }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ace";
|
2021-12-25 05:07:40 +00:00
|
|
|
version = "7.0.5";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-04-25 03:57:28 +00:00
|
|
|
url = "https://download.dre.vanderbilt.edu/previous_versions/ACE-${version}.tar.bz2";
|
2021-12-25 05:07:40 +00:00
|
|
|
sha256 = "sha256-Q4v0HhhKUmLit5+V7bb9g4T7fqaeJJxU512vBZqNl1c=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ pkg-config libtool ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ perl ];
|
|
|
|
|
2020-10-16 20:44:37 +00:00
|
|
|
NIX_CFLAGS_COMPILE = [
|
|
|
|
"-Wno-error=format-security"
|
|
|
|
];
|
|
|
|
|
2021-04-25 03:57:28 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs ./MPC/prj_install.pl
|
|
|
|
'';
|
2020-04-24 23:36:52 +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
|
|
|
|
'';
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2021-04-25 03:57:28 +00:00
|
|
|
homepage = "https://www.dre.vanderbilt.edu/~schmidt/ACE.html";
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "ADAPTIVE Communication Environment";
|
|
|
|
license = licenses.doc;
|
2021-04-25 03:57:28 +00:00
|
|
|
maintainers = with maintainers; [ nico202 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|