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

25 lines
686 B
Nix
Raw Normal View History

{ stdenv, fetchurl, getopt, lua, boost, pkgconfig }:
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";
src = fetchurl {
url = "http://www.andre-simon.de/zip/${name}.tar.bz2";
2017-02-28 23:44:50 +00:00
sha256 = "8a14b49f5e0c07daa9f40b4ce674baa00bb20061079473a5d386656f6d236d05";
};
2017-02-28 23:44:50 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ getopt lua boost ];
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.linux;
2017-02-28 23:44:50 +00:00
maintainers = maintainers.ndowens;
};
}