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

25 lines
722 B
Nix
Raw Normal View History

{ lib, 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";
};
2016-05-31 17:38:31 +01: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 12:19:44 +01:00
buildInputs = [ ncurses ];
meta = with 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 = with maintainers; [ eelco dtzWill ];
};
}