ace: 6.3.3 -> 6.4.2
This commit is contained in:
parent
586cd21796
commit
3d9d879bc0
@ -1,17 +1,18 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, libtool, perl
|
{ stdenv, fetchurl, pkgconfig, libtool, perl }:
|
||||||
}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "ace-${version}";
|
name = "ace-${version}";
|
||||||
version = "6.3.3";
|
version = "6.4.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url=http://download.dre.vanderbilt.edu/previous_versions/ACE-6.3.3.tar.bz2;
|
url = "http://download.dre.vanderbilt.edu/previous_versions/ACE-${version}.tar.bz2";
|
||||||
sha256 = "124qk205v8rx8p7rfigsargrpxjx3mh4nr99nlyk9csdc9gy8qpk";
|
sha256 = "0dscvlgxy0fwma63azjkdbc85mh8k751ik67s88w6w75j0psld73";
|
||||||
};
|
};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
buildInputs = [ pkgconfig libtool perl ];
|
nativeBuildInputs = [ pkgconfig libtool ];
|
||||||
|
buildInputs = [ perl ];
|
||||||
|
|
||||||
patchPhase = ''substituteInPlace ./MPC/prj_install.pl \
|
patchPhase = ''substituteInPlace ./MPC/prj_install.pl \
|
||||||
--replace /usr/bin/perl "${perl}/bin/perl"'';
|
--replace /usr/bin/perl "${perl}/bin/perl"'';
|
||||||
@ -25,12 +26,11 @@ stdenv.mkDerivation rec {
|
|||||||
> include/makeinclude/platform_macros.GNU
|
> include/makeinclude/platform_macros.GNU
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "ADAPTIVE Communication Environment";
|
description = "ADAPTIVE Communication Environment";
|
||||||
homepage = http://www.dre.vanderbilt.edu/~schmidt/ACE.html;
|
homepage = http://www.dre.vanderbilt.edu/~schmidt/ACE.html;
|
||||||
license = stdenv.lib.licenses.doc;
|
license = licenses.doc;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ stdenv.lib.maintainers.nico202 ];
|
maintainers = [ maintainers.nico202 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user