Skip to content

Commit

Permalink
ace: 6.3.3 -> 6.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ndowens authored and vbgl committed Mar 12, 2017
1 parent 586cd21 commit 3d9d879
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions pkgs/development/libraries/ace/default.nix
@@ -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"'';
Expand All @@ -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 ];
};
}

0 comments on commit 3d9d879

Please sign in to comment.