2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, libtool, perl }:
|
2016-02-19 17:01:32 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "ace";
|
2022-02-10 17:14:24 +00:00
|
|
|
version = "7.0.6";
|
2017-03-11 00:01:55 +00:00
|
|
|
|
2016-02-19 17:01:32 +00:00
|
|
|
src = fetchurl {
|
2021-04-22 02:51:07 +01:00
|
|
|
url = "https://download.dre.vanderbilt.edu/previous_versions/ACE-${version}.tar.bz2";
|
2022-02-10 17:14:24 +00:00
|
|
|
sha256 = "sha256-SgzX2khR92n9388z9mPrpK+tgk7+/59Z8TTEZA7oAhY=";
|
2016-02-19 17:01:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config libtool ];
|
2017-03-11 00:01:55 +00:00
|
|
|
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"
|
|
|
|
];
|
|
|
|
|
2021-04-22 02:51:07 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs ./MPC/prj_install.pl
|
|
|
|
'';
|
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
|
|
|
|
'';
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2021-04-22 02:51:07 +01:00
|
|
|
homepage = "https://www.dre.vanderbilt.edu/~schmidt/ACE.html";
|
2016-02-19 17:01:32 +00:00
|
|
|
description = "ADAPTIVE Communication Environment";
|
2017-03-11 00:01:55 +00:00
|
|
|
license = licenses.doc;
|
2021-04-22 02:51:07 +01:00
|
|
|
maintainers = with maintainers; [ nico202 ];
|
2017-03-11 00:01:55 +00:00
|
|
|
platforms = platforms.linux;
|
2016-02-19 17:01:32 +00:00
|
|
|
};
|
|
|
|
}
|