mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 20:34:06 +00:00
8ffc704d8c
less: add upstream patch to fix FreeBSD build
59 lines
1.7 KiB
Nix
59 lines
1.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, fetchpatch
|
|
, ncurses
|
|
, pcre2
|
|
, withSecure ? false
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "less";
|
|
version = "643";
|
|
|
|
# Only tarballs on the website are valid releases,
|
|
# other versions, e.g. git tags are considered snapshots.
|
|
src = fetchurl {
|
|
url = "https://www.greenwoodsoftware.com/less/less-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-KRG1QyyDb6CEyKLmj2zWMSNywCalj6qpiGJzHItgUug=";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
# https://www.openwall.com/lists/oss-security/2024/04/12/5
|
|
name = "sec-issue-newline-path.patch";
|
|
url = "https://gitlab.archlinux.org/archlinux/packaging/packages/less/-/raw/1d570db0c84fe95799f460526492e45e24c30ad0/backport-007521ac3c95bc76.patch";
|
|
hash = "sha256-BT8DLIu7oVhL5XL50uFVUp97qjklcvRHy85UQwVKAmc=";
|
|
})
|
|
(fetchpatch {
|
|
# https://github.com/gwsw/less/pull/416
|
|
name = "freebsd.patch";
|
|
url = "https://github.com/gwsw/less/commit/3ecff3752078fda90fd46c9f020f2a2bb548dd71.patch";
|
|
hash = "sha256-Iv2Jm/7wwRsyLchoEvYz9VziySJ6sI4YbSgFTdQrV+I=";
|
|
})
|
|
];
|
|
|
|
buildInputs = [
|
|
ncurses
|
|
pcre2
|
|
];
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
configureFlags = [
|
|
# Look for 'sysless' in /etc.
|
|
"--sysconfdir=/etc"
|
|
"--with-regex=pcre2"
|
|
] ++ lib.optional withSecure "--with-secure";
|
|
|
|
meta = {
|
|
homepage = "https://www.greenwoodsoftware.com/less/";
|
|
description = "More advanced file pager than 'more'";
|
|
changelog = "https://www.greenwoodsoftware.com/less/news.${finalAttrs.version}.html";
|
|
license = lib.licenses.gpl3Plus;
|
|
mainProgram = "less";
|
|
maintainers = with lib.maintainers; [ eelco dtzWill ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|