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: 550669144da4
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 066b7073b4c9
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 4, 2019

  1. w3m: pname/version

    dtzWill committed Mar 4, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    callahad Dan Callahan
    Copy the full SHA
    5bb035a View commit details
  2. Copy the full SHA
    050584c View commit details

Commits on Mar 17, 2019

  1. Merge pull request #56802 from dtzWill/update/w3m-20190105

    w3m: 0.5.3+git20180125 -> 0.5.3+git20190105
    dtzWill authored Mar 17, 2019
    Copy the full SHA
    066b707 View commit details
Showing with 5 additions and 4 deletions.
  1. +5 −4 pkgs/applications/networking/browsers/w3m/default.nix
9 changes: 5 additions & 4 deletions pkgs/applications/networking/browsers/w3m/default.nix
Original file line number Diff line number Diff line change
@@ -25,13 +25,14 @@ let
'';
};
in stdenv.mkDerivation rec {
name = "w3m-0.5.3+git20180125";
pname = "w3m";
version = "0.5.3+git20190105";

src = fetchFromGitHub {
owner = "tats";
repo = "w3m";
rev = "v0.5.3+git20180125";
sha256 = "0dafdfx1yhrvhbqzslkcapj09dvf64m2jadz3wl2icni0k4msq90";
repo = pname;
rev = "v${version}";
sha256 = "1fbg2p8qh2gvi3g4iz4q6vc0k70pf248r4yndi5lcn2m3mzvjx0i";
};

NIX_LDFLAGS = optionalString stdenv.isSunOS "-lsocket -lnsl";