summary refs log tree commit diff
path: root/pkgs/tools/text/diffutils
Commit message (Collapse)AuthorAge
* diffutils: add licensesMarkus Kowalewski2018-08-16
|
* diffutils: Enable cross-compilationBen Gamari2017-12-29
|
* diffutils: coreutils is a run-time dep; specify pr's locationJohn Ericson2017-08-16
|
* diffutils: 3.5 -> 3.6Armijn Hemel2017-05-24
|
* diffutils: 3.3 -> 3.5Lancelot SIX2016-08-21
| | | | | | 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
* Revert "Merge branch 'modprobe-fix' of git://github.com/abbradar/nixpkgs"Shea Levy2016-08-15
| | | | | | | Was meant to go into staging, sorry This reverts commit 57b2d1e9b0dcdd1d25bd2d450174764b9417ffc1, reversing changes made to 760b2b9048ea775c319cb348d74447a20dea513e.
* diffutils: 3.3 -> 3.4Lancelot SIX2016-08-10
| | | | | See http://lists.gnu.org/archive/html/info-gnu/2016-08/msg00004.html for release announcement.
* treewide: Add lots of meta.platformsTuomas Tynkkynen2016-08-02
| | | | Build-tested on x86_64 Linux & Mac.
* fix .xz in stdenv bootstrapVladimír Čunát2014-08-30
| | | | | Presumably needed due to the last staging merge. There was some stdenv stage refactoring within, IIRC.
* mutiout: make it builtinVladimír Čunát2014-08-30
|
* WIP: getting goodVladimír Čunát2014-08-27
|
* diffutils: minor stable update 3.2 -> 3.3Vladimír Čunát2013-06-30
|
* Rename buildNativeInputs -> nativeBuildInputsEelco Dolstra2012-12-28
| | | | | Likewise for propagatedBuildNativeInputs, etc. "buildNativeInputs" sounds like an imperative rather than a noun phrase.
* Fix evaluationEelco Dolstra2012-12-04
|
* Fix more gets() problemsEelco Dolstra2012-09-18
|
* tar, gzip, diffutils: Allow builds with newer versions of glibc.Ludovic Courtès2012-07-01
| | | | | This is a follow-up to 77fdc7bb3583606c86b2dd602b76a20a1bf6bc7c ("GNU Coreutils: Allow builds with newer versions of glibc.").
* GNU diffutils 3.2.Ludovic Courtès2011-10-02
| | | | svn path=/nixpkgs/branches/stdenv-updates/; revision=29590
* Updating diffutilsLluís Batlle i Rossell2010-08-04
| | | | svn path=/nixpkgs/branches/stdenv-updates/; revision=22942
* Making a bunch of basic programs cross-buildable.Lluís Batlle i Rossell2010-04-04
| | | | | | | After this, the 'bootstrap-tools' can be cross-built. svn path=/nixpkgs/branches/stdenv-updates/; revision=20945
* * coreutils-6.10, findutils-4.2.32.Eelco Dolstra2008-02-06
| | | | | | * Added some meta attributes. svn path=/nixpkgs/branches/stdenv-updates/; revision=10511
* * Rewrite all URLs to GNU mirrors to mirror://gnu/.Eelco Dolstra2007-08-27
| | | | svn path=/nixpkgs/trunk/; revision=9201
* * Reverted r6713, r6711, r4623, r3660, r2237. There rewrote fetchurlEelco Dolstra2007-08-24
| | | | | | | | | URLs to http://nix.cs.uu.nl/dist/tarballs. With content-addressable mirror support (r9190, NIXPKGS-70) this is no longer necessary: fetchurl will try to download from that location automatically. So we can keep the original URLs. svn path=/nixpkgs/trunk/; revision=9192
* * Tsk.Eelco Dolstra2006-10-26
| | | | svn path=/nixpkgs/trunk/; revision=6865
* * "." -> "source".Eelco Dolstra2005-12-05
| | | | svn path=/nixpkgs/trunk/; revision=4335
* * catamaran.labs.cs.uu.nl -> nix.cs.uu.nl.Eelco Dolstra2005-08-22
| | | | svn path=/nixpkgs/trunk/; revision=3660
* * Move tarballs to catamaran so that we are no longer dependent on aEelco Dolstra2005-02-15
| | | | | | gazillion different servers. Resurrected some 25 missing files. svn path=/nixpkgs/trunk/; revision=2237
* * Prevent a retained dependency on coreutils from stdenv.Eelco Dolstra2004-09-18
| | | | svn path=/nixpkgs/trunk/; revision=1435
* * Remove trivial builders.Eelco Dolstra2004-03-29
| | | | | | | | | | | | * Make builders unexecutable by removing the hash-bang line and execute permission. * Convert calls to `derivation' to `mkDerivation'. * Remove `system' and `stdenv' attributes from calls to `mkDerivation'. These transformations were all done automatically, so it is quite possible I broke stuff. * Put the `mkDerivation' function in stdenv/generic. svn path=/nixpkgs/trunk/; revision=874
* * The stdenv setup script now defines a generic builder that allowsEelco Dolstra2004-03-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | builders for typical Autoconf-style to be much shorten, e.g., . $stdenv/setup genericBuild The generic builder does lots of stuff automatically: - Unpacks source archives specified by $src or $srcs (it knows about gzip, bzip2, tar, zip, and unpacked source trees). - Determines the source tree. - Applies patches specified by $patches. - Fixes libtool not to search for libraries in /lib etc. - Runs `configure'. - Runs `make'. - Runs `make install'. - Strips debug information from static libraries. - Writes nested log information (in the format accepted by `log2xml'). There are also lots of hooks and variables to customise the generic builder. See `stdenv/generic/docs.txt'. * Adapted the base packages (i.e., the ones used by stdenv) to use the generic builder. * We now use `curl' instead of `wget' to download files in `fetchurl'. * Neither `curl' nor `wget' are part of stdenv. We shouldn't encourage people to download stuff in builders (impure!). * Updated some packages. * `buildinputs' is now `buildInputs' (but the old name also works). * `findInputs' in the setup script now prevents inputs from being processed multiple times (which could happen, e.g., if an input was a propagated input of several other inputs; this caused the size variables like $PATH to blow up exponentially in the worst case). * Patched GNU Make to write nested log information in the format accepted by `log2xml'. Also, prior to writing the build command, Make now writes a line `building X' to indicate what is being built. This is unfortunately often obscured by the gigantic tool invocations in many Makefiles. The actual build commands are marked `unimportant' so that they don't clutter pages generated by `log2html'. svn path=/nixpkgs/trunk/; revision=845
* * Rename .fix -> .nix.Eelco Dolstra2003-11-18
| | | | svn path=/nixpkgs/trunk/; revision=511
* * Renamed pkgs-ng to pkgs.Eelco Dolstra2003-11-14
svn path=/nixpkgs/trunk/; revision=502