Files
nixpkgs/pkgs/tools/text/highlight/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

85 lines
2.0 KiB
Nix

{
lib,
stdenv,
fetchFromGitLab,
getopt,
lua,
boost,
libxcrypt,
pkg-config,
swig,
perl,
gcc,
}:
let
self = stdenv.mkDerivation rec {
pname = "highlight";
version = "4.16";
src = fetchFromGitLab {
owner = "saalen";
repo = "highlight";
rev = "v${version}";
hash = "sha256-SAOlW2IaYY2GzQ+1FClqm62pcxdtf1cow2R4MRS/2Vg=";
};
enableParallelBuilding = true;
nativeBuildInputs = [
pkg-config
swig
perl
]
++ lib.optional stdenv.hostPlatform.isDarwin gcc;
buildInputs = [
getopt
lua
boost
libxcrypt
];
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++'
'';
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.hostPlatform.isDarwin) ''
make -C extras/swig $makeFlags perl
'';
postCheck = lib.optionalString (!stdenv.hostPlatform.isDarwin) ''
perl -Iextras/swig extras/swig/testmod.pl
'';
preInstall = lib.optionalString (!stdenv.hostPlatform.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 = [ ];
};
};
in
if stdenv.hostPlatform.isDarwin then self else perl.pkgs.toPerlModule self