2021-01-11 07:54:33 +00:00
|
|
|
|
{ lib, 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";
|
2020-12-08 18:36:28 +00:00
|
|
|
|
version = "563";
|
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";
|
2020-12-08 18:36:28 +00:00
|
|
|
|
sha256 = "16lsvk88vwjwp5ax1wnll44wxwnzs8lb2fn90xx2si64kwmnsnyf";
|
2013-08-26 13:50:45 +01:00
|
|
|
|
};
|
|
|
|
|
|
2016-05-31 17:38:31 +01:00
|
|
|
|
configureFlags = [ "--sysconfdir=/etc" ] # Look for ‘sysless’ in /etc.
|
2021-01-15 09:19:50 +00:00
|
|
|
|
++ lib.optional lessSecure [ "--with-secure" ];
|
2015-04-14 12:19:44 +01:00
|
|
|
|
|
2013-08-26 13:50:45 +01:00
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "http://www.greenwoodsoftware.com/less/";
|
2013-08-26 13:50:45 +01:00
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
}
|