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

25 lines
722 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, ncurses, lessSecure ? false }:
stdenv.mkDerivation rec {
pname = "less";
version = "563";
src = fetchurl {
url = "http://www.greenwoodsoftware.com/${pname}/${pname}-${version}.tar.gz";
sha256 = "16lsvk88vwjwp5ax1wnll44wxwnzs8lb2fn90xx2si64kwmnsnyf";
};
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; {
homepage = "http://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 ];
};
}