2258b21e4b
Build-tested on x86_64 Linux and on Darwin.
14 lines
255 B
Nix
14 lines
255 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "jikes-1.22";
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/jikes/jikes-1.22.tar.bz2;
|
|
md5 = "cda958c7fef6b43b803e1d1ef9afcb85";
|
|
};
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|