2016-05-31 17:38:31 +01:00
|
|
|
|
{ stdenv, fetchurl, ncurses, lessSecure ? false }:
|
2013-08-26 13:50:45 +01:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-06-12 05:22:15 +01:00
|
|
|
|
pname = "less";
|
|
|
|
|
version = "551";
|
2013-08-26 13:50:45 +01:00
|
|
|
|
|
2004-07-30 14:38:10 +01:00
|
|
|
|
src = fetchurl {
|
2019-06-12 05:22:15 +01:00
|
|
|
|
url = "http://www.greenwoodsoftware.com/${pname}/${pname}-${version}.tar.gz";
|
|
|
|
|
sha256 = "0ggyjl3yzn7c450zk1rixi9ls6asdhgqynhk34zsd0ckhmsm45pz";
|
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 ];
|
|
|
|
|
|
2018-08-16 21:12:21 +01:00
|
|
|
|
meta = with stdenv.lib; {
|
2013-08-26 13:50:45 +01:00
|
|
|
|
homepage = http://www.greenwoodsoftware.com/less/;
|
|
|
|
|
description = "A more advanced file pager than ‘more’";
|
2018-08-16 21:12:21 +01:00
|
|
|
|
platforms = platforms.unix;
|
|
|
|
|
license = licenses.gpl3;
|
2019-06-12 05:22:15 +01:00
|
|
|
|
maintainers = with maintainers; [ eelco dtzWill ];
|
2004-07-30 14:38:10 +01:00
|
|
|
|
};
|
|
|
|
|
}
|