summaryrefslogtreecommitdiffstats
path: root/pkgs/development
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2021-04-22 06:59:16 +0100
committerGitHub <noreply@github.com>2021-04-22 06:59:16 +0100
commit75fd67d156657d1e4b6d1827fe352889b67b0a97 (patch)
treed7fb34f9006a51824eeba4586003f3586dc93ea2 /pkgs/development
parent5bad49242c0719d3568d2d530c5ac11e546e01dd (diff)
parent1147c815df53e81ffbafad63a03797a7b288954c (diff)
Merge pull request #120130 from hjones2199/ace7
ace: 6.5.11 -> 7.0.1
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/ace/default.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/development/libraries/ace/default.nix b/pkgs/development/libraries/ace/default.nix
index 85df0b433539..8210bdb4425e 100644
--- a/pkgs/development/libraries/ace/default.nix
+++ b/pkgs/development/libraries/ace/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "ace";
- version = "6.5.11";
+ version = "7.0.1";
src = fetchurl {
- url = "http://download.dre.vanderbilt.edu/previous_versions/ACE-${version}.tar.bz2";
- sha256 = "0fbbysy6aymys30zh5m2bygs84dwwjnbsdl9ipj1rvfrhq8jbylb";
+ url = "https://download.dre.vanderbilt.edu/previous_versions/ACE-${version}.tar.bz2";
+ sha256 = "sha256-5nH5a0tBOcGfA07eeh9EjH0vgT3gTRWYHXoeO+QFQjQ=";
};
enableParallelBuilding = true;
@@ -18,8 +18,9 @@ stdenv.mkDerivation rec {
"-Wno-error=format-security"
];
- patchPhase = ''substituteInPlace ./MPC/prj_install.pl \
- --replace /usr/bin/perl "${perl}/bin/perl"'';
+ postPatch = ''
+ patchShebangs ./MPC/prj_install.pl
+ '';
preConfigure = ''
export INSTALL_PREFIX=$out
@@ -31,10 +32,10 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
+ homepage = "https://www.dre.vanderbilt.edu/~schmidt/ACE.html";
description = "ADAPTIVE Communication Environment";
- homepage = "http://www.dre.vanderbilt.edu/~schmidt/ACE.html";
license = licenses.doc;
+ maintainers = with maintainers; [ nico202 ];
platforms = platforms.linux;
- maintainers = [ maintainers.nico202 ];
};
}