2016-05-31 18:38:31 +02:00
|
|
|
|
{ stdenv, fetchurl, ncurses, lessSecure ? false }:
|
2013-08-26 14:50:45 +02:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-18 18:29:15 +01:00
|
|
|
|
name = "less-530";
|
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";
|
2018-02-18 18:29:15 +01:00
|
|
|
|
sha256 = "1qpj2z38c53qmvqn8jaa0kq26q989cfbfjj4y0s6z17l1amr2gsh";
|
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 ];
|
|
|
|
|
|
2018-08-16 22:12:21 +02:00
|
|
|
|
meta = with stdenv.lib; {
|
2013-08-26 14:50:45 +02:00
|
|
|
|
homepage = http://www.greenwoodsoftware.com/less/;
|
|
|
|
|
description = "A more advanced file pager than ‘more’";
|
2018-08-16 22:12:21 +02:00
|
|
|
|
platforms = platforms.unix;
|
|
|
|
|
license = licenses.gpl3;
|
|
|
|
|
maintainers = [ maintainers.eelco ];
|
2004-07-30 15:38:10 +02:00
|
|
|
|
};
|
|
|
|
|
}
|