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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
720 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, ncurses, lessSecure ? false }:
stdenv.mkDerivation rec {
pname = "less";
version = "608";
src = fetchurl {
2022-01-20 02:22:32 +00:00
url = "https://www.greenwoodsoftware.com/less/less-${version}.tar.gz";
sha256 = "02f2d9d6hyf03va28ip620gjc6rf4aikmdyk47h7frqj18pbx6m6";
};
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;
2021-07-30 15:25:03 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ eelco dtzWill ];
};
}