36 lines
933 B
Nix
36 lines
933 B
Nix
{ stdenv, fetchFromGitHub, getopt, lua, boost, pkgconfig, gcc }:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "highlight-${version}";
|
|
version = "3.43";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "andre-simon";
|
|
repo = "highlight";
|
|
rev = "v${version}";
|
|
sha256 = "126nsf4cjxflg2kiv72qf1xl5fsilk0jqcncs6qqgm72cpjfmlsy";
|
|
};
|
|
|
|
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/"
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|