mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
Added jikes, IBM's open source java compiler.
svn path=/nixpkgs/trunk/; revision=715
This commit is contained in:
parent
94f9bd408e
commit
02a4d8ece5
10
pkgs/development/compilers/jikes/builder.sh
Executable file
10
pkgs/development/compilers/jikes/builder.sh
Executable file
@ -0,0 +1,10 @@
|
||||
#! /bin/sh
|
||||
|
||||
. $stdenv/setup || exit 1
|
||||
|
||||
tar xvfj $src || exit 1
|
||||
cd jikes-* || exit 1
|
||||
./configure --prefix=$out || exit 1
|
||||
make || exit 1
|
||||
make install || exit 1
|
||||
|
10
pkgs/development/compilers/jikes/default.nix
Normal file
10
pkgs/development/compilers/jikes/default.nix
Normal file
@ -0,0 +1,10 @@
|
||||
{stdenv, fetchurl}: derivation {
|
||||
name = "jikes-1.18";
|
||||
system = stdenv.system;
|
||||
builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = ftp://www-126.ibm.com/pub/jikes/1.18/jikes-1.18.tar.bz2;
|
||||
md5 = "74bbcfd31aa2d7df4b86c5fe2db315cc";
|
||||
};
|
||||
stdenv = stdenv;
|
||||
}
|
@ -230,6 +230,11 @@
|
||||
stdenv = stdenv;
|
||||
};
|
||||
|
||||
jikes = (import ../development/compilers/jikes) {
|
||||
fetchurl = fetchurl;
|
||||
stdenv = stdenv;
|
||||
};
|
||||
|
||||
pcre = (import ../development/libraries/pcre) {
|
||||
fetchurl = fetchurl;
|
||||
stdenv = stdenv;
|
||||
|
Loading…
Reference in New Issue
Block a user