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";
|
2020-12-08 19:36:28 +01:00
|
|
|
|
version = "563";
|
2013-08-26 14:50:45 +02:00
|
|
|
|
|
2004-07-30 15:38:10 +02:00
|
|
|
|
src = fetchurl {
|
2019-06-12 06:22:15 +02:00
|
|
|
|
url = "http://www.greenwoodsoftware.com/${pname}/${pname}-${version}.tar.gz";
|
2020-12-08 19:36:28 +01:00
|
|
|
|
sha256 = "16lsvk88vwjwp5ax1wnll44wxwnzs8lb2fn90xx2si64kwmnsnyf";
|
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; {
|
2020-04-01 03:11:51 +02:00
|
|
|
|
homepage = "http://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;
|
|
|
|
|
license = licenses.gpl3;
|
2019-06-12 06:22:15 +02:00
|
|
|
|
maintainers = with maintainers; [ eelco dtzWill ];
|
2004-07-30 15:38:10 +02:00
|
|
|
|
};
|
|
|
|
|
}
|