3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/less/default.nix

25 lines
728 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, ncurses, lessSecure ? false }:
stdenv.mkDerivation rec {
pname = "less";
2021-07-30 16:25:03 +01:00
version = "590";
src = fetchurl {
2021-06-18 13:47:34 +01:00
url = "https://www.greenwoodsoftware.com/${pname}/${pname}-${version}.tar.gz";
2021-07-30 16:25:03 +01:00
sha256 = "044fl3izmsi8n1vqzsqdp65q0qyyn5kmsg4sk7id0mxzx15zbbba";
};
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
buildInputs = [ ncurses ];
meta = with lib; {
2021-06-18 13:47:34 +01:00
homepage = "https://www.greenwoodsoftware.com/less/";
description = "A more advanced file pager than more";
2018-08-16 21:12:21 +01:00
platforms = platforms.unix;
2021-07-30 16:25:03 +01:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ eelco dtzWill ];
};
}