mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
25 lines
722 B
Nix
25 lines
722 B
Nix
{ 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";
|
||
};
|
||
|
||
configureFlags = [ "--sysconfdir=/etc" ] # Look for ‘sysless’ in /etc.
|
||
++ lib.optional lessSecure [ "--with-secure" ];
|
||
|
||
buildInputs = [ ncurses ];
|
||
|
||
meta = with 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 ];
|
||
};
|
||
}
|