2021-01-11 07:54:33 +00:00
|
|
|
|
{ lib, stdenv, fetchurl, ncurses, lessSecure ? false }:
|
2013-08-26 12:50:45 +00:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-06-12 04:22:15 +00:00
|
|
|
|
pname = "less";
|
2021-06-18 02:40:32 +00:00
|
|
|
|
version = "581.2";
|
2013-08-26 12:50:45 +00:00
|
|
|
|
|
2004-07-30 13:38:10 +00:00
|
|
|
|
src = fetchurl {
|
2021-06-18 12:47:34 +00:00
|
|
|
|
url = "https://www.greenwoodsoftware.com/${pname}/${pname}-${version}.tar.gz";
|
2021-06-18 02:40:32 +00:00
|
|
|
|
sha256 = "0fyqslvrasv19qjvqrwfwz2n7mnm93y61x9bcx09ga90mxyb8d6f";
|
2013-08-26 12:50:45 +00:00
|
|
|
|
};
|
|
|
|
|
|
2016-05-31 16:38:31 +00: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 11:19:44 +00:00
|
|
|
|
|
2013-08-26 12:50:45 +00:00
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
|
meta = with lib; {
|
2021-06-18 12:47:34 +00:00
|
|
|
|
homepage = "https://www.greenwoodsoftware.com/less/";
|
2013-08-26 12:50:45 +00:00
|
|
|
|
description = "A more advanced file pager than ‘more’";
|
2018-08-16 20:12:21 +00:00
|
|
|
|
platforms = platforms.unix;
|
|
|
|
|
license = licenses.gpl3;
|
2019-06-12 04:22:15 +00:00
|
|
|
|
maintainers = with maintainers; [ eelco dtzWill ];
|
2004-07-30 13:38:10 +00:00
|
|
|
|
};
|
|
|
|
|
}
|