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