summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/jikespg/default.nix
blob: 18dd531e4b14a93cbf2c73184ec8b6424e002948 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{stdenv, fetchurl}:

stdenv.mkDerivation rec {
  name = "jikespg-1.3";

  src = fetchurl {
    url = "mirror://sourceforge/jikes/${name}.tar.gz";
    sha256 = "083ibfxaiw1abxmv1crccx1g6sixkbyhxn2hsrlf6fwii08s6rgw";
  };

  sourceRoot = "jikespg/src";

  installPhase =
    ''
      mkdir -p $out/bin
      cp jikespg $out/bin
    '';

  meta = with stdenv.lib; {
    homepage = "http://jikes.sourceforge.net/";
    description = "The Jikes Parser Generator";
    platforms = platforms.linux;
    license = licenses.ipl10;
    maintainers = with maintainers; [ pSub ];
  };
}