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

42 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, libtool, perl }:
2016-02-19 18:01:32 +01:00
stdenv.mkDerivation rec {
pname = "ace";
2021-05-16 08:52:17 +02:00
version = "7.0.2";
2017-03-11 01:01:55 +01:00
2016-02-19 18:01:32 +01:00
src = fetchurl {
2021-04-22 03:51:07 +02:00
url = "https://download.dre.vanderbilt.edu/previous_versions/ACE-${version}.tar.bz2";
2021-05-16 08:52:17 +02:00
sha256 = "sha256-IftPSQOrZOqMLHHlUFEFa3WcvsqN5kdS5rSlGE8ETC4=";
2016-02-19 18:01:32 +01:00
};
enableParallelBuilding = true;
nativeBuildInputs = [ pkg-config libtool ];
2017-03-11 01:01:55 +01:00
buildInputs = [ perl ];
2016-02-19 18:01:32 +01:00
NIX_CFLAGS_COMPILE = [
"-Wno-error=format-security"
];
2021-04-22 03:51:07 +02:00
postPatch = ''
patchShebangs ./MPC/prj_install.pl
'';
2019-08-18 12:53:44 +02:00
2016-02-19 18:01:32 +01: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
'';
meta = with lib; {
2021-04-22 03:51:07 +02:00
homepage = "https://www.dre.vanderbilt.edu/~schmidt/ACE.html";
2016-02-19 18:01:32 +01:00
description = "ADAPTIVE Communication Environment";
2017-03-11 01:01:55 +01:00
license = licenses.doc;
2021-04-22 03:51:07 +02:00
maintainers = with maintainers; [ nico202 ];
2017-03-11 01:01:55 +01:00
platforms = platforms.linux;
2016-02-19 18:01:32 +01:00
};
}