Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 300af6677760
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9d3c5ce32e6f
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on May 6, 2018

  1. lynx: enable IPv6 support

    jfrankenau committed May 6, 2018
    Copy the full SHA
    c642fce View commit details
  2. Copy the full SHA
    b131db5 View commit details
  3. Merge pull request #40044 from jfrankenau/lynx-ipv6

    lynx: enable IPv6 and update
    joachifm authored May 6, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9d3c5ce View commit details
Showing with 7 additions and 4 deletions.
  1. +7 −4 pkgs/applications/networking/browsers/lynx/default.nix
11 changes: 7 additions & 4 deletions pkgs/applications/networking/browsers/lynx/default.nix
Original file line number Diff line number Diff line change
@@ -9,21 +9,24 @@ assert sslSupport -> openssl != null;

stdenv.mkDerivation rec {
name = "lynx-${version}";
version = "2.8.9dev.16";
version = "2.8.9dev.17";

src = fetchurl {
urls = [
"ftp://ftp.invisible-island.net/lynx/tarballs/lynx${version}.tar.bz2"
"https://invisible-mirror.net/archives/lynx/tarballs/lynx${version}.tar.bz2"
];
sha256 = "1j0vx871ghkm7fgrafnvd2ml3ywcl8d3gyhq02fhfb851c88lc84";
sha256 = "1lvfsnrw5mmwrmn1m76q9mx287xwm3h5lg8sv7bcqilc0ywi2f54";
};

enableParallelBuilding = true;

hardeningEnable = [ "pie" ];

configureFlags = [ "--enable-widec" ] ++ stdenv.lib.optional sslSupport "--with-ssl";
configureFlags = [
"--enable-widec"
"--enable-ipv6"
] ++ stdenv.lib.optional sslSupport "--with-ssl";

depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ nukeReferences ]
@@ -40,7 +43,7 @@ stdenv.mkDerivation rec {

meta = with stdenv.lib; {
description = "A text-mode web browser";
homepage = http://lynx.invisible-island.net/;
homepage = https://lynx.invisible-island.net/;
license = licenses.gpl2Plus;
platforms = platforms.unix;
};