2017-10-30 14:19:24 +01:00
|
|
|
{ stdenv, fetchFromGitHub, getopt, lua, boost, pkgconfig, gcc }:
|
2017-03-19 21:22:57 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2014-09-08 10:22:50 +02:00
|
|
|
|
2009-11-18 10:39:59 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-05-03 04:33:49 +02:00
|
|
|
name = "highlight-${version}";
|
2018-01-29 17:42:53 +01:00
|
|
|
version = "3.42";
|
2009-11-18 10:39:59 +01:00
|
|
|
|
2017-10-30 14:19:24 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "andre-simon";
|
|
|
|
repo = "highlight";
|
|
|
|
rev = "${version}";
|
2018-01-29 17:42:53 +01:00
|
|
|
sha256 = "1fxx827igzqjn5rri57b8980hnd3ixz3j7smfxwi1ivfhlfznzgr";
|
2009-11-18 10:39:59 +01:00
|
|
|
};
|
|
|
|
|
2017-03-19 21:22:57 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ] ++ optional stdenv.isDarwin gcc ;
|
2017-03-01 00:44:50 +01:00
|
|
|
|
|
|
|
buildInputs = [ getopt lua boost ];
|
2009-11-18 10:39:59 +01:00
|
|
|
|
2017-03-19 21:22:57 +01: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 10:39:59 +01:00
|
|
|
|
2017-03-01 00:44:50 +01:00
|
|
|
meta = with stdenv.lib; {
|
2009-11-18 10:39:59 +01:00
|
|
|
description = "Source code highlighting tool";
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://www.andre-simon.de/doku/highlight/en/highlight.php;
|
2017-03-19 21:22:57 +01:00
|
|
|
platforms = platforms.unix;
|
2017-10-30 14:19:24 +01:00
|
|
|
maintainers = with maintainers; [ ndowens willibutz ];
|
2009-11-18 10:39:59 +01:00
|
|
|
};
|
|
|
|
}
|