nixpkgs/pkgs/tools/misc/less/default.nix

25 lines
726 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, ncurses, lessSecure ? false }:
stdenv.mkDerivation rec {
pname = "less";
2021-06-18 02:40:32 +00:00
version = "581.2";
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";
};
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
buildInputs = [ ncurses ];
meta = with lib; {
2021-06-18 12:47:34 +00:00
homepage = "https://www.greenwoodsoftware.com/less/";
description = "A more advanced file pager than more";
2018-08-16 20:12:21 +00:00
platforms = platforms.unix;
license = licenses.gpl3;
maintainers = with maintainers; [ eelco dtzWill ];
};
}