Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
pkg-config,
|
|
libtool,
|
|
perl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ace";
|
|
version = "7.0.11";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.dre.vanderbilt.edu/previous_versions/ACE-${version}.tar.bz2";
|
|
sha256 = "sha256-r+LRiu/u1qMcbrjkSr8ErnemX6zvhgvc5cLWu8AQhww=";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
libtool
|
|
];
|
|
buildInputs = [ perl ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString [
|
|
"-Wno-error=format-security"
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs ./MPC/prj_install.pl
|
|
'';
|
|
|
|
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 = {
|
|
homepage = "https://www.dre.vanderbilt.edu/~schmidt/ACE.html";
|
|
description = "ADAPTIVE Communication Environment";
|
|
mainProgram = "ace_gperf";
|
|
license = lib.licenses.doc;
|
|
maintainers = with lib.maintainers; [ nico202 ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|