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