nixpkgs/pkgs/development/libraries/ace/default.nix
R. RyanTM 9f26d17f4a ace: 6.4.8 -> 6.5.0 (#42038)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/ace/versions.

These checks were done:

- built on NixOS
- /nix/store/4fh87988qw0bjzks9cy73ly1np8bkkn3-ace-6.5.0/bin/ace_gperf passed the binary check.
- 1 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 6.5.0 with grep in /nix/store/4fh87988qw0bjzks9cy73ly1np8bkkn3-ace-6.5.0
- directory tree listing: https://gist.github.com/fa80e4b2dda282f3a3dc47a359985002
- du listing: https://gist.github.com/35c8e366656494975834ec145335d2f5
2018-06-18 23:33:50 +02:00

37 lines
1.1 KiB
Nix

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