nixpkgs/pkgs/applications/misc/ape/default.nix

46 lines
1.1 KiB
Nix
Raw Normal View History

2018-03-14 07:10:59 +01:00
{ stdenv, swiProlog, makeWrapper,
fetchFromGitHub,
2019-09-14 14:17:08 +02:00
lexicon ? "prolog/lexicon/clex_lexicon.pl",
2018-03-14 07:10:59 +01:00
pname ? "ape",
description ? "Parser for Attempto Controlled English (ACE)",
license ? with stdenv.lib; licenses.lgpl3
}:
stdenv.mkDerivation rec {
2019-09-14 14:17:08 +02:00
inherit pname;
version = "2019-08-10";
2018-03-14 07:10:59 +01:00
buildInputs = [ swiProlog makeWrapper ];
src = fetchFromGitHub {
owner = "Attempto";
repo = "APE";
2019-09-14 14:17:08 +02:00
rev = "113b81621262d7a395779465cb09397183e6f74c";
sha256 = "0xyvna2fbr18hi5yvm0zwh77q02dfna1g4g53z9mn2rmlfn2mhjh";
2018-03-14 07:10:59 +01:00
};
patchPhase = ''
# We move the file first to avoid "same file" error in the default case
cp ${lexicon} new_lexicon.pl
2019-09-14 14:17:08 +02:00
rm prolog/lexicon/clex_lexicon.pl
cp new_lexicon.pl prolog/lexicon/clex_lexicon.pl
2018-03-14 07:10:59 +01:00
'';
buildPhase = ''
2019-09-14 14:17:08 +02:00
make SHELL=${stdenv.shell} build
2018-03-14 07:10:59 +01:00
'';
installPhase = ''
mkdir -p $out/bin
cp ape.exe $out
makeWrapper $out/ape.exe $out/bin/ape --add-flags ace
'';
meta = with stdenv.lib; {
description = description;
license = license;
platforms = platforms.unix;
maintainers = with maintainers; [ yrashk ];
};
}