2e3da6ef7a
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - ran `/nix/store/l2wdk2hk7xr28qc76xdmsnsjlialsrw3-ace-6.4.7/bin/ace_gperf -v` and found version 6.4.7 - found 6.4.7 with grep in /nix/store/l2wdk2hk7xr28qc76xdmsnsjlialsrw3-ace-6.4.7 - found 6.4.7 in filename of file in /nix/store/l2wdk2hk7xr28qc76xdmsnsjlialsrw3-ace-6.4.7 - directory tree listing: https://gist.github.com/df8ae93ced1ab4c4b624c7739501f2a7
37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ stdenv, fetchurl, pkgconfig, libtool, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ace-${version}";
|
|
version = "6.4.7";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.dre.vanderbilt.edu/previous_versions/ACE-${version}.tar.bz2";
|
|
sha256 = "1zbncdxkkwnx4aphy0apnp7xn4aspxvq2h9bbjh33dpsy0j81afd";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ pkgconfig libtool ];
|
|
buildInputs = [ 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 = with stdenv.lib; {
|
|
description = "ADAPTIVE Communication Environment";
|
|
homepage = http://www.dre.vanderbilt.edu/~schmidt/ACE.html;
|
|
license = licenses.doc;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.nico202 ];
|
|
};
|
|
}
|