Files
nixpkgs/pkgs/applications/misc/ape/default.nix
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

53 lines
1.2 KiB
Nix

{
lib,
stdenv,
swi-prolog,
makeWrapper,
fetchFromGitHub,
lexiconPath ? "prolog/lexicon/clex_lexicon.pl",
pname ? "ape",
description ? "Parser for Attempto Controlled English (ACE)",
license ? lib.licenses.lgpl3,
}:
stdenv.mkDerivation {
inherit pname;
version = "2019-08-10";
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ swi-prolog ];
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 ${lexiconPath} 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 = {
description = description;
homepage = "https://github.com/Attempto/APE";
license = license;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ yrashk ];
mainProgram = "ape";
};
}