depot/third_party/nixpkgs/pkgs/development/tools/parsing/javacc/default.nix

40 lines
927 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, ant, jdk, jre, makeWrapper }:
stdenv.mkDerivation rec {
pname = "javacc";
version = "7.0.12";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "${pname}-${version}";
sha256 = "sha256-tDtstF3ivKjG01vOZ8Ga1zTjIZFSTWt5QPY1VQvyFMU=";
};
nativeBuildInputs = [ ant jdk makeWrapper ];
buildPhase = ''
ant jar
'';
installPhase = ''
mkdir -p $out/target
mv scripts $out/bin
mv target/javacc.jar $out/target/
find -L "$out/bin" -type f -executable -print0 \
| while IFS= read -r -d ''' file; do
wrapProgram "$file" --suffix PATH : ${jre}/bin
done
'';
doCheck = true;
checkPhase = "ant test";
meta = with lib; {
homepage = "https://javacc.github.io/javacc";
description = "A parser generator for building parsers from grammars";
license = licenses.bsd2;
maintainers = teams.deshaw.members;
};
}