2021-01-11 08:54:33 +01:00
|
|
|
|
{ lib, stdenv, fetchurl, ncurses, lessSecure ? false }:
|
2013-08-26 14:50:45 +02:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-06-12 06:22:15 +02:00
|
|
|
|
pname = "less";
|
2021-07-30 17:25:03 +02:00
|
|
|
|
version = "590";
|
2013-08-26 14:50:45 +02:00
|
|
|
|
|
2004-07-30 15:38:10 +02:00
|
|
|
|
src = fetchurl {
|
2021-06-18 14:47:34 +02:00
|
|
|
|
url = "https://www.greenwoodsoftware.com/${pname}/${pname}-${version}.tar.gz";
|
2021-07-30 17:25:03 +02:00
|
|
|
|
sha256 = "044fl3izmsi8n1vqzsqdp65q0qyyn5kmsg4sk7id0mxzx15zbbba";
|
2013-08-26 14:50:45 +02:00
|
|
|
|
};
|
|
|
|
|
|
2016-05-31 18:38:31 +02:00
|
|
|
|
configureFlags = [ "--sysconfdir=/etc" ] # Look for ‘sysless’ in /etc.
|
2021-01-15 10:19:50 +01:00
|
|
|
|
++ lib.optional lessSecure [ "--with-secure" ];
|
2015-04-14 13:19:44 +02:00
|
|
|
|
|
2013-08-26 14:50:45 +02:00
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
|
meta = with lib; {
|
2021-06-18 14:47:34 +02:00
|
|
|
|
homepage = "https://www.greenwoodsoftware.com/less/";
|
2013-08-26 14:50:45 +02:00
|
|
|
|
description = "A more advanced file pager than ‘more’";
|
2018-08-16 22:12:21 +02:00
|
|
|
|
platforms = platforms.unix;
|
2021-07-30 17:25:03 +02:00
|
|
|
|
license = licenses.gpl3Plus;
|
2019-06-12 06:22:15 +02:00
|
|
|
|
maintainers = with maintainers; [ eelco dtzWill ];
|
2004-07-30 15:38:10 +02:00
|
|
|
|
};
|
|
|
|
|
}
|