1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/misc/less/default.nix

24 lines
683 B
Nix
Raw Normal View History

2016-05-31 17:38:31 +01:00
{ stdenv, fetchurl, ncurses, lessSecure ? false }:
stdenv.mkDerivation rec {
2018-02-18 17:29:15 +00:00
name = "less-530";
src = fetchurl {
2014-09-23 10:26:04 +01:00
url = "http://www.greenwoodsoftware.com/less/${name}.tar.gz";
2018-02-18 17:29:15 +00:00
sha256 = "1qpj2z38c53qmvqn8jaa0kq26q989cfbfjj4y0s6z17l1amr2gsh";
};
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 ];
2018-08-16 21:12:21 +01:00
meta = with stdenv.lib; {
homepage = http://www.greenwoodsoftware.com/less/;
description = "A more advanced file pager than more";
2018-08-16 21:12:21 +01:00
platforms = platforms.unix;
license = licenses.gpl3;
maintainers = [ maintainers.eelco ];
};
}