mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-11 15:34:05 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
138 lines
3.6 KiB
Nix
138 lines
3.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
ncurses,
|
|
boehmgc,
|
|
gettext,
|
|
zlib,
|
|
sslSupport ? true,
|
|
openssl,
|
|
graphicsSupport ? !stdenv.hostPlatform.isDarwin,
|
|
imlib2,
|
|
x11Support ? graphicsSupport,
|
|
libX11,
|
|
mouseSupport ? !stdenv.hostPlatform.isDarwin,
|
|
gpm-ncurses,
|
|
perl,
|
|
man,
|
|
pkg-config,
|
|
buildPackages,
|
|
w3m,
|
|
testers,
|
|
updateAutotoolsGnuConfigScriptsHook,
|
|
}:
|
|
|
|
let
|
|
mktable = buildPackages.stdenv.mkDerivation {
|
|
name = "w3m-mktable";
|
|
inherit (w3m) src;
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
boehmgc
|
|
];
|
|
makeFlags = [ "mktable" ];
|
|
installPhase = ''
|
|
install -D mktable $out/bin/mktable
|
|
'';
|
|
};
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "w3m";
|
|
version = "0.5.3+git20230121";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tats";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-upb5lWqhC1jRegzTncIz5e21v4Pw912FyVn217HucFs=";
|
|
};
|
|
|
|
NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isSunOS "-lsocket -lnsl";
|
|
|
|
# we must set these so that the generated files (e.g. w3mhelp.cgi) contain
|
|
# the correct paths.
|
|
PERL = "${perl}/bin/perl";
|
|
MAN = "${man}/bin/man";
|
|
|
|
makeFlags = [ "AR=${stdenv.cc.bintools.targetPrefix}ar" ];
|
|
|
|
patches = [
|
|
./RAND_egd.libressl.patch
|
|
(fetchpatch {
|
|
name = "https.patch";
|
|
url = "https://aur.archlinux.org/cgit/aur.git/plain/https.patch?h=w3m-mouse&id=5b5f0fbb59f674575e87dd368fed834641c35f03";
|
|
sha256 = "08skvaha1hjyapsh8zw5dgfy433mw2hk7qy9yy9avn8rjqj7kjxk";
|
|
})
|
|
];
|
|
|
|
postPatch = lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
|
|
ln -s ${mktable}/bin/mktable mktable
|
|
# stop make from recompiling mktable
|
|
sed -ie 's!mktable.*:.*!mktable:!' Makefile.in
|
|
'';
|
|
|
|
# updateAutotoolsGnuConfigScriptsHook necessary to build on FreeBSD native pending inclusion of
|
|
# https://git.savannah.gnu.org/cgit/config.git/commit/?id=e4786449e1c26716e3f9ea182caf472e4dbc96e0
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
gettext
|
|
updateAutotoolsGnuConfigScriptsHook
|
|
];
|
|
buildInputs =
|
|
[
|
|
ncurses
|
|
boehmgc
|
|
zlib
|
|
]
|
|
++ lib.optional sslSupport openssl
|
|
++ lib.optional mouseSupport gpm-ncurses
|
|
++ lib.optional graphicsSupport imlib2
|
|
++ lib.optional x11Support libX11;
|
|
|
|
postInstall = lib.optionalString graphicsSupport ''
|
|
ln -s $out/libexec/w3m/w3mimgdisplay $out/bin
|
|
'';
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
configureFlags =
|
|
[
|
|
"--with-ssl=${openssl.dev}"
|
|
"--with-gc=${boehmgc.dev}"
|
|
]
|
|
++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
|
"ac_cv_func_setpgrp_void=yes"
|
|
]
|
|
++ lib.optional graphicsSupport "--enable-image=${lib.optionalString x11Support "x11,"}fb"
|
|
++ lib.optional (graphicsSupport && !x11Support) "--without-x";
|
|
|
|
preConfigure = ''
|
|
substituteInPlace ./configure --replace "/lib /usr/lib /usr/local/lib /usr/ucblib /usr/ccslib /usr/ccs/lib /lib64 /usr/lib64" /no-such-path
|
|
substituteInPlace ./configure --replace /usr /no-such-path
|
|
'';
|
|
|
|
enableParallelBuilding = false;
|
|
|
|
# for w3mimgdisplay
|
|
# see: https://bbs.archlinux.org/viewtopic.php?id=196093
|
|
LIBS = lib.optionalString x11Support "-lX11";
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
inherit version;
|
|
package = w3m;
|
|
command = "w3m -version";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://w3m.sourceforge.net/";
|
|
changelog = "https://github.com/tats/w3m/blob/v${version}/ChangeLog";
|
|
description = "Text-mode web browser";
|
|
maintainers = with maintainers; [ anthonyroussel ];
|
|
platforms = platforms.unix;
|
|
license = licenses.mit;
|
|
mainProgram = "w3m";
|
|
};
|
|
}
|