ace: 6.5.11 -> 7.0.1
This commit is contained in:
parent
da6777798d
commit
1147c815df
|
@ -2,11 +2,11 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "ace";
|
pname = "ace";
|
||||||
version = "6.5.11";
|
version = "7.0.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://download.dre.vanderbilt.edu/previous_versions/ACE-${version}.tar.bz2";
|
url = "https://download.dre.vanderbilt.edu/previous_versions/ACE-${version}.tar.bz2";
|
||||||
sha256 = "0fbbysy6aymys30zh5m2bygs84dwwjnbsdl9ipj1rvfrhq8jbylb";
|
sha256 = "sha256-5nH5a0tBOcGfA07eeh9EjH0vgT3gTRWYHXoeO+QFQjQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
@ -18,8 +18,9 @@ stdenv.mkDerivation rec {
|
||||||
"-Wno-error=format-security"
|
"-Wno-error=format-security"
|
||||||
];
|
];
|
||||||
|
|
||||||
patchPhase = ''substituteInPlace ./MPC/prj_install.pl \
|
postPatch = ''
|
||||||
--replace /usr/bin/perl "${perl}/bin/perl"'';
|
patchShebangs ./MPC/prj_install.pl
|
||||||
|
'';
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
export INSTALL_PREFIX=$out
|
export INSTALL_PREFIX=$out
|
||||||
|
@ -31,10 +32,10 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
homepage = "https://www.dre.vanderbilt.edu/~schmidt/ACE.html";
|
||||||
description = "ADAPTIVE Communication Environment";
|
description = "ADAPTIVE Communication Environment";
|
||||||
homepage = "http://www.dre.vanderbilt.edu/~schmidt/ACE.html";
|
|
||||||
license = licenses.doc;
|
license = licenses.doc;
|
||||||
|
maintainers = with maintainers; [ nico202 ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.nico202 ];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue