summary refs log tree commit diff
path: root/pkgs/tools/text/gnused
Commit message (Collapse)AuthorAge
* Fixing the gnused fetchurl hash type, for stdenv-updates to evaluate wellLluís Batlle i Rossell2010-04-22
| | | | svn path=/nixpkgs/branches/stdenv-updates/; revision=21252
* Merging from trunk.Lluís Batlle i Rossell2010-04-22
|\ | | | | | | | | | | | | I hope I resolved the conflicts well (gmp and gccCross) svn path=/nixpkgs/branches/stdenv-updates/; revision=21251
| * Updating gnused 4.2Lluís Batlle i Rossell2010-03-27
| | | | | | | | svn path=/nixpkgs/trunk/; revision=20837
* | Assorted GNU updates.Ludovic Courtès2010-04-13
|/ | | | svn path=/nixpkgs/branches/stdenv-updates/; revision=21047
* GNU sed 4.2.Ludovic Courtès2009-04-30
| | | | svn path=/nixpkgs/trunk/; revision=15418
* GNU sed: Update/fix `meta'.Ludovic Courtès2009-04-30
| | | | svn path=/nixpkgs/trunk/; revision=15417
* * GNU sed 4.1.2: obsolete.Eelco Dolstra2009-01-23
| | | | svn path=/nixpkgs/branches/stdenv-updates/; revision=13825
* * 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
* * bash 2.0, findutils 4.2.28.Eelco Dolstra2006-10-24
| | | | | | * Some Nix expression simplifications. Sense and simplicity! svn path=/nixpkgs/trunk/; revision=6836
* * GNU sed 4.1.5 compiled with dietlibc gives "Memory exhausted" errorsEelco Dolstra2006-10-20
| | | | | | | on trivial patterns, so use an older sed instead (4.1.2). See http://linuxfromscratch.org/pipermail/hlfs-dev/2005-September/002447.html. svn path=/nixpkgs/trunk/; revision=6792
* * Copy a bunch of files to nix.cs.uu.nl.Eelco Dolstra2006-10-12
| | | | svn path=/nixpkgs/trunk/; revision=6711
* * Doh! Idem.Eelco Dolstra2006-07-14
| | | | svn path=/nixpkgs/trunk/; revision=5704
* * Workaround for silly sed problem.Eelco Dolstra2006-07-14
| | | | svn path=/nixpkgs/trunk/; revision=5703
* and update gnused again to 4.1.5...build buildfarm, build! >:)Armijn Hemel2006-02-19
| | | | svn path=/nixpkgs/trunk/; revision=4862
* Revert sed updateMartin Bravenboer2006-02-05
| | | | svn path=/nixpkgs/trunk/; revision=4723
* update to sed 4.1.5Armijn Hemel2006-02-05
| | | | svn path=/nixpkgs/trunk/; revision=4721
* * Copy lots of files to nix.cs.uu.nl.Eelco Dolstra2006-01-30
| | | | svn path=/nixpkgs/trunk/; revision=4623
* * Glibc updated to 2.3.5.Eelco Dolstra2005-06-17
| | | | | | | * GCC 3.4.4 and 3.3.6. * Other stdenv packages updated. svn path=/nixpkgs/trunk/; revision=3188
* * 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
* * GNU sed upgraded to 4.1.2. Eelco Dolstra2004-09-18
| | | | svn path=/nixpkgs/trunk/; revision=1434
* * 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