9 stdenv.mkDerivation (finalAttrs: {
13 # Only tarballs on the website are valid releases,
14 # other versions, e.g. git tags are considered snapshots.
16 url = "https://www.greenwoodsoftware.com/less/less-${finalAttrs.version}.tar.gz";
17 hash = "sha256-K18BZyFuPvD/ywwxw3Tih+sDXk4iPV2uMVwng7bnOO0=";
25 outputs = [ "out" "man" ];
28 # Look for 'sysless' in /etc.
31 ] ++ lib.optional withSecure "--with-secure";
34 homepage = "https://www.greenwoodsoftware.com/less/";
35 description = "More advanced file pager than 'more'";
36 changelog = "https://www.greenwoodsoftware.com/less/news.${finalAttrs.version}.html";
37 license = lib.licenses.gpl3Plus;
39 maintainers = with lib.maintainers; [ eelco dtzWill ];
40 platforms = lib.platforms.unix;