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

34 lines
900 B
Nix
Raw Normal View History

{ stdenv, fetchurl, getopt, lua, boost, pkgconfig, gcc }:
with stdenv.lib;
stdenv.mkDerivation rec {
2016-05-03 03:33:49 +01:00
name = "highlight-${version}";
2017-02-28 23:44:50 +00:00
version = "3.35";
src = fetchurl {
url = "http://www.andre-simon.de/zip/${name}.tar.bz2";
2017-02-28 23:44:50 +00:00
sha256 = "8a14b49f5e0c07daa9f40b4ce674baa00bb20061079473a5d386656f6d236d05";
};
nativeBuildInputs = [ pkgconfig ] ++ optional stdenv.isDarwin gcc ;
2017-02-28 23:44:50 +00: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-02-28 23:44:50 +00:00
meta = with stdenv.lib; {
description = "Source code highlighting tool";
2017-02-28 23:44:50 +00:00
homepage = "http://www.andre-simon.de/doku/highlight/en/highlight.php";
platforms = platforms.unix;
maintainers = [ maintainers.ndowens ];
};
}