nixpkgs/pkgs/tools/text/highlight/default.nix

36 lines
932 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, getopt, lua, boost, pkgconfig, gcc }:
with stdenv.lib;
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";
src = fetchFromGitHub {
owner = "andre-simon";
repo = "highlight";
rev = "${version}";
2018-01-29 17:42:53 +01:00
sha256 = "1fxx827igzqjn5rri57b8980hnd3ixz3j7smfxwi1ivfhlfznzgr";
};
nativeBuildInputs = [ pkgconfig ] ++ optional stdenv.isDarwin gcc ;
2017-03-01 00:44:50 +01:00
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/"
'';
2017-03-01 00:44:50 +01:00
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 ];
};
}