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