2017-10-30 06:19:24 -07:00
|
|
|
{ stdenv, fetchFromGitHub, getopt, lua, boost, pkgconfig, gcc }:
|
2017-03-19 13:22:57 -07:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2014-09-08 01:22:50 -07:00
|
|
|
|
2009-11-18 01:39:59 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2016-05-02 19:33:49 -07:00
|
|
|
name = "highlight-${version}";
|
2017-10-30 06:19:24 -07:00
|
|
|
version = "3.40";
|
2009-11-18 01:39:59 -08:00
|
|
|
|
2017-10-30 06:19:24 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "andre-simon";
|
|
|
|
repo = "highlight";
|
|
|
|
rev = "${version}";
|
|
|
|
sha256 = "0bkywhz4y10qcajimdha1ck5mvn7fsrv3yn8nd6rqbva39gbfmfd";
|
2009-11-18 01:39:59 -08:00
|
|
|
};
|
|
|
|
|
2017-03-19 13:22:57 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ] ++ optional stdenv.isDarwin gcc ;
|
2017-02-28 15:44:50 -08:00
|
|
|
|
|
|
|
buildInputs = [ getopt lua boost ];
|
2009-11-18 01:39:59 -08:00
|
|
|
|
2017-03-19 13:22:57 -07:00
|
|
|
prePatch = stdenv.lib.optionalString stdenv.cc.isClang ''
|
|
|
|
substituteInPlace src/makefile \
|
|
|
|
--replace 'CXX=g++' 'CXX=clang++'
|
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
makeFlags="PREFIX=$out conf_dir=$out/etc/highlight/"
|
|
|
|
'';
|
2009-11-18 01:39:59 -08:00
|
|
|
|
2017-02-28 15:44:50 -08:00
|
|
|
meta = with stdenv.lib; {
|
2009-11-18 01:39:59 -08:00
|
|
|
description = "Source code highlighting tool";
|
2017-08-01 13:03:30 -07:00
|
|
|
homepage = http://www.andre-simon.de/doku/highlight/en/highlight.php;
|
2017-03-19 13:22:57 -07:00
|
|
|
platforms = platforms.unix;
|
2017-10-30 06:19:24 -07:00
|
|
|
maintainers = with maintainers; [ ndowens willibutz ];
|
2009-11-18 01:39:59 -08:00
|
|
|
};
|
|
|
|
}
|