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

Commits on Nov 11, 2020

  1. lsof: 4.93.2 -> 4.94.0

    r-ryantm committed Nov 11, 2020
    Copy the full SHA
    0251996 View commit details

Commits on Nov 12, 2020

  1. Merge pull request #103463 from r-ryantm/auto-update/lsof

    lsof: 4.93.2 -> 4.94.0
    marsam authored Nov 12, 2020
    Copy the full SHA
    906e557 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/tools/misc/lsof/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/tools/misc/lsof/default.nix
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ let dialect = with stdenv.lib; last (splitString "-" stdenv.hostPlatform.system)

stdenv.mkDerivation rec {
pname = "lsof";
version = "4.93.2";
version = "4.94.0";

depsBuildBuild = [ buildPackages.stdenv.cc ];
buildInputs = [ ncurses ];
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
owner = "lsof-org";
repo = "lsof";
rev = version;
sha256 = "1gd6r0nv8xz76pmvk52dgmfl0xjvkxl0s51b4jk4a0lphw3393yv";
sha256 = "0yxv2jg6rnzys49lyrz9yjb4knamah4xvlqj596y6ix3vm4k3chp";
};

patches = [ ./no-build-info.patch ];