mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
38 lines
980 B
Nix
38 lines
980 B
Nix
{ stdenv, fetchFromGitLab, getopt, lua, boost, pkgconfig, gcc }:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "highlight-${version}";
|
|
version = "3.53";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "saalen";
|
|
repo = "highlight";
|
|
rev = "v${version}";
|
|
sha256 = "11szws4q6qyffq2fsvh1vksh1d0kcwg6smyyba9yr61hzx6zmzgr";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ pkgconfig ] ++ optional stdenv.isDarwin gcc ;
|
|
|
|
buildInputs = [ getopt lua boost ];
|
|
|
|
prePatch = stdenv.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"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Source code highlighting tool";
|
|
homepage = "http://www.andre-simon.de/doku/highlight/en/highlight.php";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ ndowens willibutz ];
|
|
};
|
|
}
|