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: e768919148e3
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6e4e0cf44d50
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Sep 1, 2019

  1. Copy the full SHA
    6e4e0cf View commit details
Showing with 4 additions and 54 deletions.
  1. +4 −8 pkgs/tools/misc/findutils/default.nix
  2. +0 −25 pkgs/tools/misc/findutils/disable-getdtablesize-test.patch
  3. +0 −21 pkgs/tools/misc/findutils/memory-leak.patch
12 changes: 4 additions & 8 deletions pkgs/tools/misc/findutils/default.nix
Original file line number Diff line number Diff line change
@@ -3,20 +3,16 @@
}:

stdenv.mkDerivation rec {
name = "findutils-4.6.0";
pname = "findutils";
version = "4.7.0";

src = fetchurl {
url = "mirror://gnu/findutils/${name}.tar.gz";
sha256 = "178nn4dl7wbcw499czikirnkniwnx36argdnqgz4ik9i6zvwkm6y";
url = "mirror://gnu/findutils/${pname}-${version}.tar.xz";
sha256 = "16kqz9yz98dasmj70jwf5py7jk558w96w0vgp3zf9xsqk3gzpzn5";
};

patches = [
./memory-leak.patch
./no-install-statedir.patch

# Prevent tests from failing on old kernels (2.6x)
# getdtablesize reports incorrect values if getrlimit() fails
./disable-getdtablesize-test.patch
];

buildInputs = [ coreutils ]; # bin/updatedb script needs to call sort
25 changes: 0 additions & 25 deletions pkgs/tools/misc/findutils/disable-getdtablesize-test.patch

This file was deleted.

21 changes: 0 additions & 21 deletions pkgs/tools/misc/findutils/memory-leak.patch

This file was deleted.