mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
8083fe9ea8
see issue #43716
15 lines
319 B
Nix
15 lines
319 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "jikes-1.22";
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/jikes/jikes-1.22.tar.bz2;
|
|
sha256 = "1qqldrp74pzpy5ly421srqn30qppmm9cvjiqdngk8hf47dv2rc0c";
|
|
};
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.unix;
|
|
license = stdenv.lib.licenses.epl10;
|
|
};
|
|
}
|