1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

lesspipe: init at 1.82

lesspipe.sh is a preprocessor for less.
This commit is contained in:
Martijn Vermaat 2016-05-09 16:59:26 +02:00
parent 53643f532a
commit 3ada292a67
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

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