about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/parsing/jikespg/default.nix
blob: 34e628866838f48c13b6bfbab18ac169b9c20db3 (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
{lib, 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 lib; {
    homepage = "http://jikes.sourceforge.net/";
    description = "The Jikes Parser Generator";
    platforms = platforms.linux;
    license = licenses.ipl10;
    maintainers = with maintainers; [ pSub ];
  };
}