summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/text/highlight
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-02-28 17:44:50 -0600
committerndowens <ndowens04@gmail.com>2017-02-28 17:44:50 -0600
commit9655567c09fe6b7156a19ce44040c86738d9dd3c (patch)
tree875cee944d2e3378b50e5bbb48f5f84128737815 /pkgs/tools/text/highlight
parent61785c55319dbb1d3af1f2d362d028f6814570af (diff)
highlight: 3.28 -> 3.35
Diffstat (limited to 'pkgs/tools/text/highlight')
-rw-r--r--pkgs/tools/text/highlight/default.nix14
1 files changed, 9 insertions, 5 deletions
diff --git a/pkgs/tools/text/highlight/default.nix b/pkgs/tools/text/highlight/default.nix
index eb6359ba9782..3d8bfbf03f82 100644
--- a/pkgs/tools/text/highlight/default.nix
+++ b/pkgs/tools/text/highlight/default.nix
@@ -2,19 +2,23 @@
stdenv.mkDerivation rec {
name = "highlight-${version}";
- version = "3.28";
+ version = "3.35";
src = fetchurl {
url = "http://www.andre-simon.de/zip/${name}.tar.bz2";
- sha256 = "1kg73isgz3czb1k6ccajqzifahr3zs9ci8168k0dlj31j1nlndin";
+ sha256 = "8a14b49f5e0c07daa9f40b4ce674baa00bb20061079473a5d386656f6d236d05";
};
- buildInputs = [ getopt lua boost pkgconfig ];
+ nativeBuildInputs = [ pkgconfig ];
+
+ buildInputs = [ getopt lua boost ];
preConfigure = ''makeFlags="PREFIX=$out conf_dir=$out/etc/highlight/"'';
- meta = {
+ meta = with stdenv.lib; {
description = "Source code highlighting tool";
- platforms = stdenv.lib.platforms.unix;
+ homepage = "http://www.andre-simon.de/doku/highlight/en/highlight.php";
+ platforms = platforms.unix;
+ maintainers = maintainers.ndowens;
};
}