summary refs log tree commit diff
path: root/pkgs/tools/compression
Commit message (Collapse)AuthorAge
* tukaani.org is down...Michael Raskin2009-05-08
| | | | svn path=/nixpkgs/trunk/; revision=15503
* * Got rid of a lot of "postInstall=postInstall" and similar lines inEelco Dolstra2009-04-23
| | | | | | | | | | builders. These are redundant now. * Inlined some trivial builders. * Removed a few explicit setup-hook creations. This is done automatically now if setupHook is set. * Deleted the initscripts package. NixOS doesn't use it anymore. svn path=/nixpkgs/branches/stdenv-updates/; revision=15276
* * Sync with the trunk once more.Eelco Dolstra2009-03-31
|\ | | | | | | | | | | * Turn on everything in Hydra. svn path=/nixpkgs/branches/stdenv-updates/; revision=14806
| * Adding lzop and updating lzo.Lluís Batlle i Rossell2009-03-28
| | | | | | | | svn path=/nixpkgs/trunk/; revision=14749
| * Adding upx.Lluís Batlle i Rossell2009-03-22
| | | | | | | | svn path=/nixpkgs/trunk/; revision=14645
* | * Sync with the trunk.Eelco Dolstra2009-03-20
|\| | | | | | | svn path=/nixpkgs/branches/stdenv-updates/; revision=14634
| * Adding lrzip and rzip.Lluís Batlle i Rossell2009-03-17
| | | | | | | | svn path=/nixpkgs/trunk/; revision=14581
* | * Install a libbz2.so symlink. Otherwise, programs that link againstEelco Dolstra2009-03-03
| | | | | | | | | | | | -lbz2 will get libbz2.a, which is generally not what we want. svn path=/nixpkgs/branches/stdenv-updates/; revision=14307
* | * Use the sh from klibc in the bootstrap. It's a lot smaller thanEelco Dolstra2009-01-29
| | | | | | | | | | | | bash. Also, use the cpio from klibc instead of tar. svn path=/nixpkgs/branches/stdenv-updates/; revision=13905
* | * lzma 4.32.7.Eelco Dolstra2009-01-21
|/ | | | svn path=/nixpkgs/branches/stdenv-updates/; revision=13818
* * Various updates.Eelco Dolstra2008-06-12
| | | | svn path=/nixpkgs/branches/stdenv-updates/; revision=12051
* Various fixes and updates to build that all.Michael Raskin2008-02-10
| | | | svn path=/nixpkgs/branches/stdenv-updates/; revision=10568
* * coreutils-6.10, findutils-4.2.32.Eelco Dolstra2008-02-06
| | | | | | * Added some meta attributes. svn path=/nixpkgs/branches/stdenv-updates/; revision=10511
* More homepagesYury G. Kudryashov2008-01-31
| | | | svn path=/nixpkgs/branches/stdenv-updates/; revision=10432
* Added patch from Gentoo for glibc 2.6 compatibility. It just randomly ↵Michael Raskin2007-10-11
| | | | | | renames an inner function, so glibc 2.5-safe. svn path=/nixpkgs/trunk/; revision=9441
* * 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
* * gzip 1.3.12 (NIXPKGS-53). Note that gunzip and zcat are scriptsEelco Dolstra2007-05-24
| | | | | | now instead of (sym)links. svn path=/nixpkgs/trunk/; revision=8745
* * bzip2 1.0.4 (NIXPKGS-57).Eelco Dolstra2007-05-24
| | | | svn path=/nixpkgs/trunk/; revision=8744
* * Merge builder-cygwin.sh.Eelco Dolstra2006-12-27
| | | | svn path=/nixpkgs/trunk/; revision=7497
* new versions of various very important tools to keep the buildfarm busy.Armijn Hemel2006-12-25
| | | | svn path=/nixpkgs/trunk/; revision=7485
* * Fix bzip2 on cygwin.Eelco Dolstra2006-11-13
| | | | svn path=/nixpkgs/trunk/; revision=7025
* * Hook variables in the generic builder are now executed using eval.Eelco Dolstra2006-10-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This has a major advantage: you can write hooks directly in Nix expressions. For instance, rather than write a builder like this: source $stdenv/setup postInstall=postInstall postInstall() { ln -sf gzip $out/bin/gunzip ln -sf gzip $out/bin/zcat } genericBuild (the gzip builder), you can just add this attribute to the derivation: postInstall = "ln -sf gzip $out/bin/gunzip; ln -sf gzip $out/bin/zcat"; and so a separate build script becomes unnecessary. This should allow us to get rid of most builders in Nixpkgs. * Allow configure and make arguments to contain whitespace. Previously, you could say, for instance configureFlags="CFLAGS=-O0" but not configureFlags="CFLAGS=-O0 -g" since the `-g' would be interpreted as a separate argument to configure. Now you can say configureFlagsArray=("CFLAGS=-O0 -g") or similarly configureFlagsArray=("CFLAGS=-O0 -g" "LDFLAGS=-L/foo -L/bar") which does the right thing. Idem for makeFlags, installFlags, checkFlags and distFlags. Unfortunately you can't pass arrays to Bash through the environment, so you can't put the array above in a Nix expression, e.g., configureFlagsArray = ["CFLAGS=-O0 -g"]; since it would just be flattened to a since string. However, you can use the inline hooks described above: preConfigure = "configureFlagsArray=(\"CFLAGS=-O0 -g\")"; svn path=/nixpkgs/trunk/; revision=6863
* * Doh.Eelco Dolstra2006-10-26
| | | | svn path=/nixpkgs/trunk/; revision=6859
* * Symlink gunzip, zcat.Eelco Dolstra2006-10-26
| | | | svn path=/nixpkgs/trunk/; revision=6857
* * Doh.Eelco Dolstra2006-10-24
| | | | svn path=/nixpkgs/trunk/; revision=6837
* * No longer needed.Eelco Dolstra2006-10-24
| | | | svn path=/nixpkgs/trunk/; revision=6834
* * Unify the bzip2 builders.Eelco Dolstra2006-10-24
| | | | svn path=/nixpkgs/trunk/; revision=6833
* * bzip2 with dietlibc.Eelco Dolstra2006-10-18
| | | | svn path=/nixpkgs/trunk/; revision=6767
* * Use stdenv.isDarwin.Eelco Dolstra2006-07-17
| | | | svn path=/nixpkgs/trunk/; revision=5728
* * Treat i686-darwin as powerpc-darwin.Eelco Dolstra2006-07-06
| | | | svn path=/nixpkgs/trunk/; revision=5604
* * Ugh, bzip2 should be autotooled...Eelco Dolstra2006-05-31
| | | | svn path=/nixpkgs/trunk/; revision=5357
* * Doh!Eelco Dolstra2006-02-06
| | | | svn path=/nixpkgs/trunk/; revision=4739
* * Grmbl.Eelco Dolstra2006-02-06
| | | | svn path=/nixpkgs/trunk/; revision=4738
* * Quick hack to get bzip2 to build on Darwin.Eelco Dolstra2006-02-06
| | | | svn path=/nixpkgs/trunk/; revision=4737
* * Copy lots of files to nix.cs.uu.nl.Eelco Dolstra2006-01-30
| | | | svn path=/nixpkgs/trunk/; revision=4623
* add a statically linked bzip2. This is the last of the tools we need for a ↵Armijn Hemel2006-01-01
| | | | | | fullystatic initial stdenv... svn path=/nixpkgs/trunk/; revision=4477
* add static version for initial stdenvArmijn Hemel2005-12-27
| | | | svn path=/nixpkgs/trunk/; revision=4444
* * "." -> "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
* * Don't patch symlinked shared libraries.Eelco Dolstra2005-06-17
| | | | svn path=/nixpkgs/trunk/; revision=3195
* * Build bzip2 shared library.Eelco Dolstra2005-06-17
| | | | svn path=/nixpkgs/trunk/; revision=3194
* * 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
* * Added bsdiff 4.2. Wow, this is even better than zdelta (which inEelco Dolstra2004-11-29
| | | | | | turn appears to be better than vdelta). svn path=/nixpkgs/trunk/; revision=1819
* * Added zdelta 2.1.Eelco Dolstra2004-11-29
| | | | svn path=/nixpkgs/trunk/; revision=1817
* * 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