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

47 lines
1.1 KiB
Nix
Raw Normal View History

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