ansifilter: init at 1.15

This commit is contained in:
Maxwell 2016-03-18 13:04:56 -04:00
parent 0bf8a1a86d
commit 5c740539a8
3 changed files with 30 additions and 0 deletions

View file

@ -12,6 +12,7 @@
abbradar = "Nikolay Amiantov <ab@fmap.me>";
aboseley = "Adam Boseley <adam.boseley@gmail.com>";
adev = "Adrien Devresse <adev@adev.name>";
Adjective-Object = "Maxwell Huang-Hobbs <mhuan13@gmail.com>";
aespinosa = "Allan Espinosa <allan.espinosa@outlook.com>";
aflatter = "Alexander Flatter <flatter@fastmail.fm>";
aforemny = "Alexander Foremny <alexanderforemny@googlemail.com>";

View file

@ -0,0 +1,27 @@
{ fetchurl, stdenv, pkgconfig, boost, lua }:
let version = "1.15";
pkgsha = "65dc20cc1a03d4feba990f830186404c90462d599e5f4b37610d4d822d67aec4";
in stdenv.mkDerivation {
name = "ansifilter-${version}";
buildInputs = [
pkgconfig boost lua
];
src = fetchurl {
url = "http://www.andre-simon.de/zip/ansifilter-${version}.tar.bz2";
sha256 = pkgsha;
};
meta = {
description = "Tool to convert ANSI to other formats";
longDescription = ''
Tool to remove ANSI or convert them to another format
(HTML, TeX, LaTeX, RTF, Pango or BBCode)
'';
license = stdenv.lib.licenses.gpl1;
maintainers = [ stdenv.lib.maintainers.Adjective-Object ];
};
makeFlags="PREFIX=$(out) conf_dir=$(out)/etc/ansifilter/";
}

View file

@ -540,6 +540,8 @@ let
analog = callPackage ../tools/admin/analog {};
ansifilter = callPackage ../tools/text/ansifilter {};
apktool = callPackage ../development/tools/apktool {
buildTools = androidenv.buildTools;
};