2019-07-24 17:31:23 +01:00
|
|
|
{ stdenv, fetchFromGitLab, getopt, lua, boost, pkgconfig, gcc }:
|
2017-03-19 20:22:57 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2014-09-08 09:22:50 +01:00
|
|
|
|
2009-11-18 09:39:59 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "highlight";
|
2019-11-28 03:28:29 +00:00
|
|
|
version = "3.54";
|
2009-11-18 09:39:59 +00:00
|
|
|
|
2019-07-24 17:31:23 +01:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "saalen";
|
2017-10-30 13:19:24 +00:00
|
|
|
repo = "highlight";
|
2018-04-30 18:22:42 +01:00
|
|
|
rev = "v${version}";
|
2019-11-28 03:28:29 +00:00
|
|
|
sha256 = "1144qv3c02hd3qrnms9cxfprdmkvz06vy4zjq500wg4iz7r8654m";
|
2009-11-18 09:39:59 +00:00
|
|
|
};
|
|
|
|
|
2019-07-24 17:31:23 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
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 = ''
|
2019-03-16 15:50:25 +00:00
|
|
|
makeFlags="PREFIX=$out conf_dir=$out/etc/highlight/ CXX=$CXX AR=$AR"
|
2017-03-19 20:22:57 +00:00
|
|
|
'';
|
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";
|
2019-08-04 13:35:41 +01: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
|
|
|
};
|
|
|
|
}
|