depot/third_party/nixpkgs/pkgs/development/tools/parsing/jikespg/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

30 lines
767 B
Nix

{lib, stdenv, fetchurl}:
stdenv.mkDerivation rec {
pname = "jikespg";
version = "1.3";
src = fetchurl {
url = "mirror://sourceforge/jikes/${pname}-${version}.tar.gz";
sha256 = "083ibfxaiw1abxmv1crccx1g6sixkbyhxn2hsrlf6fwii08s6rgw";
};
postPatch = ''
substituteInPlace Makefile --replace-fail "gcc" "${stdenv.cc.targetPrefix}cc ${lib.optionalString stdenv.isDarwin "-std=c89"}"
'';
sourceRoot = "jikespg/src";
installPhase = ''
install -Dm755 -t $out/bin jikespg
'';
meta = with lib; {
homepage = "https://jikes.sourceforge.net/";
description = "The Jikes Parser Generator";
mainProgram = "jikespg";
platforms = platforms.all;
license = licenses.ipl10;
maintainers = with maintainers; [ pSub ];
};
}