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