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

23 lines
659 B
Nix
Raw Normal View History

2016-05-31 17:38:31 +01:00
{ stdenv, fetchurl, ncurses, lessSecure ? false }:
stdenv.mkDerivation rec {
name = "less-481";
src = fetchurl {
2014-09-23 10:26:04 +01:00
url = "http://www.greenwoodsoftware.com/less/${name}.tar.gz";
sha256 = "19fxj0h10y5bhr3a1xa7kqvnwl44db3sdypz8jxl1q79yln8z8rz";
};
2016-05-31 17:38:31 +01:00
configureFlags = [ "--sysconfdir=/etc" ] # Look for sysless in /etc.
++ stdenv.lib.optional lessSecure [ "--with-secure" ];
2015-04-14 12:19:44 +01:00
buildInputs = [ ncurses ];
meta = {
homepage = http://www.greenwoodsoftware.com/less/;
description = "A more advanced file pager than more";
2014-04-04 00:10:51 +01:00
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.eelco ];
};
}