nixpkgs/pkgs/development/libraries/ace/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

37 lines
1.1 KiB
Nix

{ stdenv, fetchurl, pkgconfig, libtool, perl }:
stdenv.mkDerivation rec {
pname = "ace";
version = "6.5.5";
src = fetchurl {
url = "http://download.dre.vanderbilt.edu/previous_versions/ACE-${version}.tar.bz2";
sha256 = "1r1bvy65n50l6lbxm1k1bscqcv29mpkgp0pgr5cvvv7ldisrjl39";
};
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 ];
};
}