2014-09-08 08:22:50 +00:00
|
|
|
{ stdenv, fetchurl, getopt, lua, boost, pkgconfig }:
|
|
|
|
|
2009-11-18 09:39:59 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-05-03 02:33:49 +00:00
|
|
|
name = "highlight-${version}";
|
2017-02-28 23:44:50 +00:00
|
|
|
version = "3.35";
|
2009-11-18 09:39:59 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.andre-simon.de/zip/${name}.tar.bz2";
|
2017-02-28 23:44:50 +00:00
|
|
|
sha256 = "8a14b49f5e0c07daa9f40b4ce674baa00bb20061079473a5d386656f6d236d05";
|
2009-11-18 09:39:59 +00:00
|
|
|
};
|
|
|
|
|
2017-02-28 23:44:50 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ getopt lua boost ];
|
2009-11-18 09:39:59 +00:00
|
|
|
|
2015-06-18 14:07:55 +00:00
|
|
|
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-02-28 23:44:50 +00:00
|
|
|
homepage = "http://www.andre-simon.de/doku/highlight/en/highlight.php";
|
2017-03-02 15:37:48 +00:00
|
|
|
platforms = platforms.linux;
|
2017-02-28 23:44:50 +00:00
|
|
|
maintainers = maintainers.ndowens;
|
2009-11-18 09:39:59 +00:00
|
|
|
};
|
|
|
|
}
|