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

25 lines
729 B
Nix
Raw Normal View History

2016-05-31 18:38:31 +02:00
{ stdenv, fetchurl, ncurses, lessSecure ? false }:
stdenv.mkDerivation rec {
pname = "less";
version = "551";
src = fetchurl {
url = "http://www.greenwoodsoftware.com/${pname}/${pname}-${version}.tar.gz";
sha256 = "0ggyjl3yzn7c450zk1rixi9ls6asdhgqynhk34zsd0ckhmsm45pz";
};
2016-05-31 18:38:31 +02:00
configureFlags = [ "--sysconfdir=/etc" ] # Look for sysless in /etc.
++ stdenv.lib.optional lessSecure [ "--with-secure" ];
2015-04-14 13:19:44 +02:00
buildInputs = [ ncurses ];
2018-08-16 22:12:21 +02:00
meta = with stdenv.lib; {
homepage = http://www.greenwoodsoftware.com/less/;
description = "A more advanced file pager than more";
2018-08-16 22:12:21 +02:00
platforms = platforms.unix;
license = licenses.gpl3;
maintainers = with maintainers; [ eelco dtzWill ];
};
}