depot/third_party/nixpkgs/pkgs/tools/misc/less/default.nix
Default email b55a4ee46f Project import generated by Copybara.
GitOrigin-RevId: e9158eca70ae59e73fae23be5d13d3fa0cfc78b4
2020-12-09 13:39:15 +01:00

24 lines
731 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ 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";
};
configureFlags = [ "--sysconfdir=/etc" ] # Look for sysless in /etc.
++ stdenv.lib.optional lessSecure [ "--with-secure" ];
buildInputs = [ ncurses ];
meta = with stdenv.lib; {
homepage = "http://www.greenwoodsoftware.com/less/";
description = "A more advanced file pager than more";
platforms = platforms.unix;
license = licenses.gpl3;
maintainers = with maintainers; [ eelco dtzWill ];
};
}