Merge pull request #22101 from zimbatm/no-md5

Bye bye MD5
This commit is contained in:
Domen Kožar
2017-01-25 09:07:48 +01:00
committed by GitHub
18 changed files with 24 additions and 985 deletions

View File

@@ -5,7 +5,7 @@ stdenv.mkDerivation {
builder = ./builder.sh;
src = fetchurl {
url = mirror://sourceforge/jclasslib/jclasslib_unix_2_0.tar.gz;
md5 = "31d91bb03fee23410689d2f1c4c439b1";
sha256 = "1y2fbg5h2p3fwcp7h5n1qib7x9svyrilq3i58vm6vany1xzg7nx5";
};
inherit jre xpf ant;

View File

@@ -1,24 +0,0 @@
{stdenv, fetchurl, jre}:
stdenv.mkDerivation {
name = "antlr-3.0b3";
builder = ./builder.sh;
src = fetchurl {
url = http://www.antlr.org/download/antlr-3.0b3.tar.gz;
md5 = "6a7e70ccece8149b735cc3aaa24241cc";
};
inherit jre;
meta = with stdenv.lib; {
description = "Powerful parser generator";
longDescription = ''
ANTLR (ANother Tool for Language Recognition) is a powerful parser
generator for reading, processing, executing, or translating structured
text or binary files. It's widely used to build languages, tools, and
frameworks. From a grammar, ANTLR generates a parser that can build and
walk parse trees.
'';
homepage = http://www.antlr.org/;
platforms = platforms.linux;
};
}