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