mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{ stdenv, swiProlog, makeWrapper,
|
|
fetchFromGitHub,
|
|
lexicon ? "prolog/lexicon/clex_lexicon.pl",
|
|
pname ? "ape",
|
|
description ? "Parser for Attempto Controlled English (ACE)",
|
|
license ? with stdenv.lib; licenses.lgpl3
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
inherit pname;
|
|
version = "2019-08-10";
|
|
|
|
buildInputs = [ swiProlog makeWrapper ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Attempto";
|
|
repo = "APE";
|
|
rev = "113b81621262d7a395779465cb09397183e6f74c";
|
|
sha256 = "0xyvna2fbr18hi5yvm0zwh77q02dfna1g4g53z9mn2rmlfn2mhjh";
|
|
};
|
|
|
|
patchPhase = ''
|
|
# We move the file first to avoid "same file" error in the default case
|
|
cp ${lexicon} new_lexicon.pl
|
|
rm prolog/lexicon/clex_lexicon.pl
|
|
cp new_lexicon.pl prolog/lexicon/clex_lexicon.pl
|
|
'';
|
|
|
|
buildPhase = ''
|
|
make SHELL=${stdenv.shell} build
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|