about summary refs log tree commit diff
path: root/pkgs/tools/misc/findutils
AgeCommit message (Collapse)AuthorFilesLines
2022-11-22findutils: Fix the build on Android by disabling hardeningJean-Paul Calderone1-0/+5
This fixes many instances of: ``` error: use of undeclared identifier '__USE_FORTIFY_LEVEL' ```
2022-03-26findutils: move {locate,updatedb} to a separate $locate outputArtturin1-2/+17
https://github.com/NixOS/nixpkgs/issues/53925
2022-02-27findutils: fix build w/glibc-2.34Maximilian Bosch1-1/+1
This "-D__nonnull\\(params\\)=" leads to a compilation failure in e.g. the configure phase: configure:21131: gcc -c -D__nonnull\(params\)= conftest.c >&5 <command-line>: warning: ISO C99 requires whitespace after the macro name <command-line>: error: stray '\' in program <command-line>: error: expected ',' or ';' before '(' token <command-line>: error: stray '\' in program According to the commit this isn't even needed on Linux. I confirmed that this is an (expectable) glibc-2.34 thing by checking that * the issue doesn't occur with gcc 10/11 on a recent glibc-2.33 staging. * the issue DOES occur in a docker container with Fedora rawhide (which has glibc 2.34 and gcc 11).
2022-02-05findutils: 4.8.0 -> 4.9.0Lancelot SIX1-2/+2
See https://mail.gnu.org/archive/html/info-gnu/2022-02/msg00003.html for release information.
2021-07-31findutils: remove upstreamed patchBen Wolsieffer2-49/+1
The patch for 32-bit ARM was included in 4.8.0, and therefore needs to be removed.
2021-03-12findutils: fix darwin buildmidchildan1-0/+6
2021-03-12Revert "Revert "findutils: 4.7.0 -> 4.8.0""midchildan1-2/+2
This reverts commit 4acf7fd6bc131f0d36ab2353db0a8c9fccc00855.
2021-01-15pkgs/tools: stdenv.lib -> libBen Siraphob1-4/+4
2020-11-15findutils: fix build on 32-bit ARMBen Wolsieffer2-3/+49
Add an upstream patch to fix failing tests. The patch actually affects gnulib, which is included as a vendored dependency.
2020-07-31treewide: add warning comment to “boot” packagesMatthew Bauer1-0/+5
This adds a warning to the top of each “boot” package that reads: Note: this package is used for bootstrapping fetchurl, and thus cannot use fetchpatch! All mutable patches (generated by GitHub or cgit) that are needed here should be included directly in Nixpkgs as files. This makes it clear to maintainer that they may need to treat this package a little differently than others. Importantly, we can’t use fetchpatch here due to using <nix/fetchurl.nix>. To avoid having stale hashes, we need to include patches that are subject to changing overtime (for instance, gitweb’s patches contain a version number at the bottom).
2020-06-14findutils: fix undeclared xargs dep on echoTravis A. Everett1-0/+4
When invoked without a command parameter, xargs runs echo from PATH. This change patches xargs to use a specific Nix-built echo.
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2019-08-31findutils: 4.6.0 -> 4.7.0 (#67753)Lancelot SIX3-54/+4
See https://lists.gnu.org/archive/html/info-gnu/2019-08/msg00009.html for release information
2018-12-02Treewide: use HTTPS on GNU domainsc0bw3b1-1/+1
HTTP -> HTTPS for : - http://gnu.org/ - http://www.gnu.org/ - http://elpa.gnu.org/ - http://lists.gnu.org/ - http://gcc.gnu.org/ - http://ftp.gnu.org/ (except in fetchurl mirrors) - http://bugs.gnu.org/
2018-09-15findutils: specify on which kernel version the test failJörg Thalheim1-1/+2
2018-09-14findutils: disable a bogus testDmitry Kalinkin2-1/+32
2018-08-30treewide: Remove usage of remaining redundant platform compatability stuffJohn Ericson1-5/+4
Want to get this out of here for 18.09, so it can be deprecated thereafter.
2018-07-20[bot] treewide: remove unused 'inherit' in let blocksvolth1-2/+0
2018-02-13findutils: disable tests w/muslWill Dietz1-0/+1
2017-08-16findutils: Manually specify sort's locationJohn Ericson1-2/+7
Run-time deps aren't necessarily on the PATH, so we cannot rely on configure finding it. N.B. on cross `-z` support is assumed missing, which is an incorrect assumption.
2017-06-22findutils: modernize and fix crossRoss MacLeod1-8/+11
2017-02-27Merge branch 'master' into stagingVladimír Čunát1-2/+2
2017-02-27findutils: Fix cross compilationTuomas Tynkkynen1-2/+2
Yes, setting crossAttrs.propagatedBuildInputs is the correct value to set to override a buildInputs from the native drv!
2017-02-26findutils: add the forgotten file (I'm sorry)Vladimír Čunát1-0/+11
/cc #23152.
2017-02-26findutils: fixup sandboxed build after #23152Vladimír Čunát1-1/+1
2017-02-24findutils: updatedb now uses writable database outside of /nix/store by defaultMogria1-0/+2
updatedb could only be run by providing the --output parameter, because it would use a path inside the nix store as it's database. The default for --output is now /var/cache/locatedb (the same as in the NixOS locate service)
2017-02-20Re-revert "Merge: glibc: 2.24 -> 2.25"Vladimír Čunát1-1/+2
This reverts commit 55cc7700e968001c9ac79190fbcf25ed3620680a. I hope most problems have been solved. /cc #22874.
2017-02-16findutils: plug a memory leak (close #22857)Vladimír Čunát2-1/+24
Using the upstream patch directly. It's copied in nixpkgs, because: - fetchpatch isn't usable at this point in bootstrapping, - the upstream patch creates collisions in NEWS.
2017-02-16Revert "Merge: glibc: 2.24 -> 2.25"Vladimír Čunát1-2/+1
This reverts commit 1daf2e26d221712dfbe72f9f6d2f73ef230cc43c, reversing changes made to c0c50dfcb70d48e5b79c4ae9f1aa9d339af860b4. It seems this is what has been causing all the reliability problems on Hydra. I'm currently unable to find why it happens, so I'm forced to revert the update for now. Discussion: #22874.
2017-02-13findutils: disable tests on i686-linuxVladimír Čunát1-1/+2
They won't work since glibc-2.25, and I don't like to spend more time on that.
2016-04-01Merge branch 'master' into closure-sizeVladimír Čunát4-45/+5
Beware that stdenv doesn't build. It seems something more will be needed than just resolution of merge conflicts.
2016-03-01findutils: Disable tests on DarwinEelco Dolstra1-1/+1
The strftime test fails with: NZST-12NZDT,M9.5.0,M4.1.0/3: expected "1970-01-01 13:00:00 +1300 (NZDT)", got "1970-01-01 12:00:00 +1200 (NZST)" The source in fact marks this test as "ahistorical", so the result on Darwin might not be incorrect. http://hydra.nixos.org/build/32578562/nixlog/1/raw
2016-02-27findutils: 4.4.2 -> 4.6.0Eelco Dolstra4-45/+5
The first findutils update in six years! Changes: https://lists.gnu.org/archive/html/info-gnu/2015-12/msg00014.html
2015-10-03Merge commit staging+systemd into closure-sizeVladimír Čunát2-1/+17
Many non-conflict problems weren't (fully) resolved in this commit yet.
2015-06-22findutils: disable test_canonicalize (close #8324)Robert Scott2-1/+13
It fails when user doesn't have permission to list all TMPDIR's parent directories.
2015-05-28cygwin: findutils fpending and coreutils patchMarko Durkovic1-0/+4
2015-04-18Merge 'staging' into closure-sizeVladimír Čunát1-0/+2
- there were many easy merge conflicts - cc-wrapper needed nontrivial changes Many other problems might've been created by interaction of the branches, but stdenv and a few other packages build fine now.
2015-03-20Set some meta.platformsEelco Dolstra1-0/+2
Also fix meta.platform -> meta.platforms in a few places.
2014-08-30mutiout: make it builtinVladimír Čunát1-1/+0
2014-08-27WIP: getting goodVladimír Čunát1-1/+4
2014-07-28Turn some license strings into lib.licenses valuesMateusz Kowalczyk1-1/+1
2012-12-28Rename buildNativeInputs -> nativeBuildInputsEelco Dolstra1-1/+1
Likewise for propagatedBuildNativeInputs, etc. "buildNativeInputs" sounds like an imperative rather than a noun phrase.
2012-11-29Remove a bunch of unreferenced filesEelco Dolstra2-62/+1
Plus a small number of obsolete packages (like old versions of qemu).
2012-11-29Remove findutils 4.2.27Eelco Dolstra1-14/+0
We only used this version on Darwin, but the regular findutils seems to build fine.
2010-04-13Assorted GNU updates.Ludovic Courtès1-2/+2
svn path=/nixpkgs/branches/stdenv-updates/; revision=21047
2010-04-04Making a bunch of basic programs cross-buildable.Lluís Batlle i Rossell1-1/+6
After this, the 'bootstrap-tools' can be cross-built. svn path=/nixpkgs/branches/stdenv-updates/; revision=20945
2009-04-22GNU Find Utilities 4.4.1.Ludovic Courtès1-5/+26
svn path=/nixpkgs/branches/stdenv-updates/; revision=15242
2008-11-14* Get rid of all references to nix.cs.uu.nl.Eelco Dolstra1-1/+1
svn path=/nixpkgs/trunk/; revision=13299
2008-04-22* Updated coreutils and findutils.Eelco Dolstra1-3/+3
svn path=/nixpkgs/branches/stdenv-updates/; revision=11685
2008-02-06* coreutils-6.10, findutils-4.2.32.Eelco Dolstra1-3/+8
* Added some meta attributes. svn path=/nixpkgs/branches/stdenv-updates/; revision=10511