2016-05-31 18:38:31 +02:00
|
|
|
|
{ stdenv, fetchurl, ncurses, lessSecure ? false }:
|
2013-08-26 14:50:45 +02:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-10-22 00:36:15 +02:00
|
|
|
|
name = "less-520";
|
2013-08-26 14:50:45 +02:00
|
|
|
|
|
2004-07-30 15:38:10 +02:00
|
|
|
|
src = fetchurl {
|
2014-09-23 11:26:04 +02:00
|
|
|
|
url = "http://www.greenwoodsoftware.com/less/${name}.tar.gz";
|
2017-10-22 00:36:15 +02:00
|
|
|
|
sha256 = "12wh0j07971j53v7irfcv0vkb7wpi7f83jll4mwjy92wc27fm2bv";
|
2013-08-26 14:50:45 +02:00
|
|
|
|
};
|
|
|
|
|
|
2016-05-31 18:38:31 +02:00
|
|
|
|
configureFlags = [ "--sysconfdir=/etc" ] # Look for ‘sysless’ in /etc.
|
|
|
|
|
++ stdenv.lib.optional lessSecure [ "--with-secure" ];
|
2015-04-14 13:19:44 +02:00
|
|
|
|
|
2013-08-26 14:50:45 +02:00
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
|
homepage = http://www.greenwoodsoftware.com/less/;
|
|
|
|
|
description = "A more advanced file pager than ‘more’";
|
2014-04-04 01:10:51 +02:00
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2013-08-26 14:50:45 +02:00
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2004-07-30 15:38:10 +02:00
|
|
|
|
};
|
|
|
|
|
}
|