core/pkgs/by-name/hi/highlight/default.nix

85 lines
1.9 KiB
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{
lib,
stdenv,
fetchFromGitLab,
getopt,
lua,
boost,
libxcrypt,
pkg-config,
swig,
perl,
gcc,
}:
2024-05-02 00:46:19 +00:00
let
self = stdenv.mkDerivation rec {
pname = "highlight";
version = "4.11";
src = fetchFromGitLab {
owner = "saalen";
repo = "highlight";
rev = "v${version}";
sha256 = "sha256-8QWcpSYkzw62XFyIqisM2x1AOqzVUPUYgs5bPA4liSw=";
};
enableParallelBuilding = true;
2024-06-30 08:16:52 +00:00
nativeBuildInputs = [
pkg-config
swig
perl
] ++ lib.optional stdenv.isDarwin gcc;
2024-05-02 00:46:19 +00:00
2024-06-30 08:16:52 +00:00
buildInputs = [
getopt
lua
boost
libxcrypt
];
2024-05-02 00:46:19 +00:00
2024-06-30 08:16:52 +00:00
postPatch =
''
substituteInPlace src/makefile \
--replace "shell pkg-config" "shell $PKG_CONFIG"
substituteInPlace makefile \
--replace 'gzip' 'gzip -n'
''
+ lib.optionalString stdenv.cc.isClang ''
substituteInPlace src/makefile \
--replace 'CXX=g++' 'CXX=clang++'
'';
2024-05-02 00:46:19 +00:00
preConfigure = ''
makeFlags="PREFIX=$out conf_dir=$out/etc/highlight/ CXX=$CXX AR=$AR"
'';
# This has to happen _before_ the main build because it does a
# `make clean' for some reason.
preBuild = lib.optionalString (!stdenv.isDarwin) ''
make -C extras/swig $makeFlags perl
'';
postCheck = lib.optionalString (!stdenv.isDarwin) ''
perl -Iextras/swig extras/swig/testmod.pl
'';
preInstall = lib.optionalString (!stdenv.isDarwin) ''
mkdir -p $out/${perl.libPrefix}
install -m644 extras/swig/highlight.{so,pm} $out/${perl.libPrefix}
make -C extras/swig clean # Clean up intermediate files.
'';
meta = with lib; {
description = "Source code highlighting tool";
mainProgram = "highlight";
homepage = "http://www.andre-simon.de/doku/highlight/en/highlight.php";
platforms = platforms.unix;
maintainers = with maintainers; [ willibutz ];
};
};
in
2024-06-30 08:16:52 +00:00
if stdenv.isDarwin then self else perl.pkgs.toPerlModule self