summary refs log blame commit diff
path: root/pkgs/development/tools/parsing/jikespg/default.nix
blob: 6f0eb3735ffbb971ddfd0a4452bb3e356005ff45 (plain) (tree)
1
2
3
4
5
6
7
8
9

                   
                         
                       
 
                  

                                                                    
    








                             
                           

                                               


                                             
    
 
{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 ];
  };
}