summaryrefslogtreecommitdiff
path: root/pkgs/tools/text/diffutils/default.nix (follow)
Commit message (Expand)AuthorAgeFilesLines
* teams/helsinki-systems: dropWolfgang Walther2026-01-141-1/+4
* Merge branch 'staging-next' into stagingWolfgang Walther2025-12-101-3/+3
|\
| * treewide: clean up 'meta = with' pattern•••This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de> Ihar Hrachyshka2025-12-101-3/+3
* | diffutils: disable gnulib tests to fix Darwin crossBen Siraphob2025-11-191-1/+7
|/
* diffutils: unconditionalize a patchVladimír Čunát2025-10-071-2/+1
* diffutils: fix tests on pkgsMusl.pkgsLLVMmatthewcroughan2025-09-281-0/+3
* diffutils: Fix gnulib test failure on ppc64OPNA26082025-07-141-0/+7
* diffutils: disable atime-based test on FreeBSD•••This atime-based test fails on some FreeBSD configurations Artemis Tosini2025-05-281-0/+4
* diffutils: fix cross•••https://lists.gnu.org/archive/html/bug-diffutils/2025-04/msg00004.html misuzu2025-04-271-1/+4
* diffutils: skip `test-sigaction` on `x86_64-darwin`•••More Rosetta 2 issues. AArch32 can continue coming along for the ride, I guess. Emily2025-04-231-1/+2
* diffutils: skip tests more robustlyEmily2025-04-231-2/+2
* diffutils: 3.11 -> 3.12•••changelog: https://savannah.gnu.org/news/?id=10749 Simon Hauser2025-04-171-3/+3
* diffutils: 3.10 -> 3.11•••Changes: https://lists.gnu.org/archive/html/info-gnu/2025-02/msg00003.html Sergei Trofimovich2025-02-151-2/+2
* Merge remote-tracking branch 'origin/nixos-unstable' into update-armv56_boots...Guillaume Girol2024-12-171-8/+27
|\
| * treewide: format all inactive Nix files•••After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-build https://github.com/infinisil/treewide-nixpkgs-reformat-script/archive/a08b3a4d199c6124ac5b36a889d9099b4383463f.tar.gz \ --argstr baseRev b32a0943687d2a5094a6d92f25a4b6e16a76b5b7 result/bin/apply-formatting $NIXPKGS_PATH Silvan Mosberger2024-12-101-8/+25
* | pkgs/tools/text/diffutils: Disabled test-c-stack2 test-sigsegv-catch-stackove...•••Those tests fail on qemu making it impossible to build on other architectures Sebastian2024-12-161-1/+1
|/
* various: Enable updateAutotoolsGnuConfigScriptsHook•••Prior to August 2023, any config.guess generated by autoconf will include a hardcoded /usr/bin/uname invocation for FreeBSD on any architecture other than arm. This clearly doesn't work under nix. We must then update or otherwise patch each old config.guess. Audrey Dutcher2024-05-271-2/+2
* diffutils: disable tests in diffutils on riscv64Bit2024-04-031-1/+2
* Revert "diffutils: disable tests on aarch64 musl"•••This reverts commit 45584b3e5a7d25bf7f9dcb4e0a1888c98330c53a. These work fine now that we have an up-to-date bootstrap tarball for this platform. Alyssa Ross2024-01-251-1/+1
* diffutils: disable tests on aarch64 musl•••The tests have never worked on aarch64 musl, so this restores the previous behaviour on that platform of building successfully even though the tests don't pass. Since the tests work on x86_64 musl, and not aarch64 musl, my best guess having not looked too closely is that the difference is because aarch64 is stuck on ancient bootstrap tools for musl that cause all sorts of problems. Hopefully we can revert this once the bootstrap tools are updated. Having diffutils building is a prerequisite to doing that. Fixes: 9588972fe983 ("diffutils: 3.9 -> 3.10") Alyssa Ross2023-10-101-1/+1
* diffutils: disable hanging test on x86_64-darwin•••The test-c-stack tests hang on x86_64-darwin when they are run under Rosetta 2. Disabling these tests allows the rest of the tests to run successfully on that platform. This is a similar to the issue that affected gnugrep (NixOS#236229). Randy Eckenrode2023-07-031-0/+7
* diffutils: 3.9 -> 3.10•••Fixes the issue introduced in 3.9 and makes cmp and diff work past Y2K39 Janne Heß2023-05-211-15/+6
* diffutils: 3.8 -> 3.9•••Changes: https://savannah.gnu.org/forum/forum.php?forum_id=10282 Sergei Trofimovich2023-02-201-2/+14
* diffutils: 3.7 -> 3.8•••ChangeLog: https://fossies.org/linux/misc/diffutils-3.8.tar.xz/diffutils-3.8/ChangeLog Will be needed to fix its build with glibc-2.34[1]. [1] https://github.com/NixOS/nixpkgs/pull/133431 Maximilian Bosch2021-09-111-2/+2
* diffutils: name -> pnameLuflosi2021-04-221-2/+3
* pkgs/tools: stdenv.lib -> libBen Siraphob2021-01-151-2/+2
* treewide: with stdenv.lib; in meta -> with lib;•••Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix Profpatsch2021-01-111-2/+2
* treewide: add warning comment to “boot” packages•••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). Matthew Bauer2020-07-311-0/+5
* treewide: Per RFC45, remove all unquoted URLsMichael Reilly2020-04-101-1/+1
* diffutils: 3.6 -> 3.7•••https://savannah.gnu.org/forum/forum.php?forum_id=9341 Will Dietz2019-01-021-2/+2
* Treewide: use HTTPS on GNU domains•••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/ c0bw3b2018-12-021-1/+1
* diffutils: add licensesMarkus Kowalewski2018-08-161-2/+3
* diffutils: Enable cross-compilationBen Gamari2017-12-291-1/+2
* diffutils: coreutils is a run-time dep; specify pr's locationJohn Ericson2017-08-161-1/+7
* diffutils: 3.5 -> 3.6Armijn Hemel2017-05-241-2/+2
* diffutils: 3.3 -> 3.5•••Releases announcements: 3.4: http://lists.gnu.org/archive/html/info-gnu/2016-08/msg00004.html 3.5: http://lists.gnu.org/archive/html/info-gnu/2016-08/msg00010.html Lancelot SIX2016-08-211-2/+2
* Revert "Merge branch 'modprobe-fix' of git://github.com/abbradar/nixpkgs"•••Was meant to go into staging, sorry This reverts commit 57b2d1e9b0dcdd1d25bd2d450174764b9417ffc1, reversing changes made to 760b2b9048ea775c319cb348d74447a20dea513e. Shea Levy2016-08-151-2/+2
* diffutils: 3.3 -> 3.4•••See http://lists.gnu.org/archive/html/info-gnu/2016-08/msg00004.html for release announcement. Lancelot SIX2016-08-101-2/+2
* treewide: Add lots of meta.platforms•••Build-tested on x86_64 Linux & Mac. Tuomas Tynkkynen2016-08-021-0/+1
* fix .xz in stdenv bootstrap•••Presumably needed due to the last staging merge. There was some stdenv stage refactoring within, IIRC. Vladimír Čunát2014-08-301-2/+2
* mutiout: make it builtinVladimír Čunát2014-08-301-1/+0
* WIP: getting goodVladimír Čunát2014-08-271-0/+3
* diffutils: minor stable update 3.2 -> 3.3Vladimír Čunát2013-06-301-6/+4
* Rename buildNativeInputs -> nativeBuildInputs•••Likewise for propagatedBuildNativeInputs, etc. "buildNativeInputs" sounds like an imperative rather than a noun phrase. Eelco Dolstra2012-12-281-1/+1
* Fix evaluationEelco Dolstra2012-12-041-1/+1
* Fix more gets() problemsEelco Dolstra2012-09-181-15/+7
* tar, gzip, diffutils: Allow builds with newer versions of glibc.•••This is a follow-up to 77fdc7bb3583606c86b2dd602b76a20a1bf6bc7c ("GNU Coreutils: Allow builds with newer versions of glibc."). Ludovic Courtès2012-07-011-1/+11
* GNU diffutils 3.2.•••svn path=/nixpkgs/branches/stdenv-updates/; revision=29590 Ludovic Courtès2011-10-021-3/+3
* Updating diffutils•••svn path=/nixpkgs/branches/stdenv-updates/; revision=22942 Lluís Batlle i Rossell2010-08-041-3/+3
* Making a bunch of basic programs cross-buildable.•••After this, the 'bootstrap-tools' can be cross-built. svn path=/nixpkgs/branches/stdenv-updates/; revision=20945 Lluís Batlle i Rossell2010-04-041-1/+1