nixpkgs/pkgs/development/libraries/ace/default.nix

37 lines
1.1 KiB
Nix
Raw Normal View History

2017-03-11 00:01:55 +00:00
{ stdenv, fetchurl, pkgconfig, libtool, perl }:
2016-02-19 17:01:32 +00:00
stdenv.mkDerivation rec {
pname = "ace";
version = "6.5.6";
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";
sha256 = "15lfjc8r854hvjfvimhnqc3987b3cdngilhkii9rwpzginbyipi4";
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
patchPhase = ''substituteInPlace ./MPC/prj_install.pl \
--replace /usr/bin/perl "${perl}/bin/perl"'';
2019-08-18 10:53:44 +00: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";
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
};
}