3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #15338 from martijnvermaat/lesspipe-sh

lesspipe: init at 1.82
This commit is contained in:
Joachim Fasting 2016-05-11 06:40:06 +02:00
commit 2d080f2f8f
3 changed files with 38 additions and 0 deletions

View file

@ -221,6 +221,7 @@
marcweber = "Marc Weber <marco-oweber@gmx.de>";
markus1189 = "Markus Hauck <markus1189@gmail.com>";
markWot = "Markus Wotringer <markus@wotringer.de>";
martijnvermaat = "Martijn Vermaat <martijn@vermaat.name>";
matejc = "Matej Cotman <cotman.matej@gmail.com>";
mathnerd314 = "Mathnerd314 <mathnerd314.gph+hs@gmail.com>";
matthiasbeyer = "Matthias Beyer <mail@beyermatthias.de>";

View file

@ -0,0 +1,35 @@
{ stdenv, fetchFromGitHub, perl }:
stdenv.mkDerivation rec {
name = "lesspipe-${version}";
version = "1.82";
buildInputs = [ perl ];
preConfigure = "patchShebangs .";
src = fetchFromGitHub {
owner = "wofr06";
repo = "lesspipe";
rev = version;
sha256 = "0vb7bpap8vy003ha10hc7hxl17y47sgdnrjpihgqxkn8k0bfqbbq";
};
meta = with stdenv.lib; {
description = "A preprocessor for less";
longDescription = ''
Usually lesspipe.sh is called as an input filter to less. With the help
of that filter less will display the uncompressed contents of compressed
(gzip, bzip2, compress, rar, 7-zip, lzip, xz or lzma) files. For files
containing archives and directories, a table of contents will be
displayed (e.g tar, ar, rar, jar, rpm and deb formats). Other supported
formats include nroff, pdf, ps, dvi, shared library, MS word, OASIS
(e.g. Openoffice), NetCDF, html, mp3, jpg, png, iso images, MacOSX bom,
plist and archive formats, perl storable data and gpg encrypted files.
This does require additional helper programs being installed.
'';
homepage = https://github.com/wofr06/lesspipe;
platforms = platforms.all;
license = licenses.gpl2;
maintainers = [ maintainers.martijnvermaat ];
};
}

View file

@ -2142,6 +2142,8 @@ in
less = callPackage ../tools/misc/less { };
lesspipe = callPackage ../tools/misc/lesspipe { };
liquidsoap = callPackage ../tools/audio/liquidsoap/full.nix { };
lnav = callPackage ../tools/misc/lnav { };