Eelco Dolstra
c9b6da363f
* Hack to prevent a dependency in Glibc on the stdenv-linux bootstrap
...
tools.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13943
2009-02-01 21:29:39 +00:00
Eelco Dolstra
52122b0e4d
* Don't require a stdenv to build stdenv. This obviates the need for
...
a stdenvInitial in the bootstrap.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13942
2009-02-01 21:28:55 +00:00
Eelco Dolstra
12038d5586
* Allow hooks like preBuild to be set both through shell functions and
...
variables. This is so you don't have to write things like
preBuild=preBuild
preBuild() {
bla
}
svn path=/nixpkgs/branches/stdenv-updates/; revision=13941
2009-02-01 21:28:02 +00:00
Eelco Dolstra
472a0d2057
* Pass -rpath flags in the same order as -L flags.
...
* Put the Glibc linker flags in front of the GCC linker flags. Needed
for the stdenv-linux bootstrap.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13940
2009-02-01 21:26:28 +00:00
Eelco Dolstra
15258b7f50
* Disable make check.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13937
2009-02-01 21:21:21 +00:00
Eelco Dolstra
0baf685191
* mpfr 2.4.0.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13935
2009-02-01 21:19:24 +00:00
Eelco Dolstra
0e1483cf87
svn path=/nixpkgs/branches/stdenv-updates/; revision=13915
2009-01-30 13:21:17 +00:00
Eelco Dolstra
5f66ddd3c3
svn path=/nixpkgs/branches/stdenv-updates/; revision=13914
2009-01-30 09:27:15 +00:00
Ludovic Courtès
b36fdd3d13
Switch to ALSA 1.0.19.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13911
2009-01-29 20:50:46 +00:00
Ludovic Courtès
a1561dbfe3
Switch to GTK+ 2.14 and companion libraries.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13910
2009-01-29 20:40:38 +00:00
Eelco Dolstra
1c623126c7
* Use the sh from klibc in the bootstrap. It's a lot smaller than
...
bash. Also, use the cpio from klibc instead of tar.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13905
2009-01-29 17:48:45 +00:00
Eelco Dolstra
c584bb878a
* Sync with trunk.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13903
2009-01-29 16:33:02 +00:00
Eelco Dolstra
e8a9844354
svn path=/nixpkgs/branches/stdenv-updates/; revision=13902
2009-01-29 16:08:03 +00:00
Eelco Dolstra
edc5cdaf98
* splashutils_13 / splashutils_15: these don't depend on the kernel
...
version.
* Add klibc and splashutils to the channel.
svn path=/nixpkgs/trunk/; revision=13901
2009-01-29 15:56:01 +00:00
Eelco Dolstra
b48cc44ebf
* klibc: install statically linked binaries as well.
...
* klibc: build against the regular kernel headers instead of depending
on a kernel build. This way we don't have to rebuild klibc every
time the kernel changes.
* splashutils 1.3: compile properly with a klibc that uses unpatched
kernel headers.
svn path=/nixpkgs/trunk/; revision=13900
2009-01-29 15:44:37 +00:00
Eelco Dolstra
858cf3cdcb
* Wrong hash.
...
svn path=/nixpkgs/trunk/; revision=13899
2009-01-29 11:00:56 +00:00
Armijn Hemel
0604fa4ed8
pass intltool to new pidgin
...
svn path=/nixpkgs/trunk/; revision=13898
2009-01-28 17:16:27 +00:00
Armijn Hemel
167a2424a8
version bump to 2.6.6
...
svn path=/nixpkgs/trunk/; revision=13897
2009-01-28 17:14:34 +00:00
Armijn Hemel
b0cc696011
version bump
...
svn path=/nixpkgs/trunk/; revision=13896
2009-01-28 17:14:14 +00:00
Armijn Hemel
7d7cca5408
update to 2.5.4, use at your own risk
...
svn path=/nixpkgs/trunk/; revision=13895
2009-01-28 16:17:32 +00:00
Armijn Hemel
12c64bf562
update to 3.0.5
...
svn path=/nixpkgs/trunk/; revision=13894
2009-01-28 14:52:57 +00:00
Armijn Hemel
6ab7f33f23
update to 3.2.7 -- untested
...
svn path=/nixpkgs/trunk/; revision=13893
2009-01-28 14:51:26 +00:00
Eelco Dolstra
112c86e719
* Typo in the URLs.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13891
2009-01-28 13:44:44 +00:00
Eelco Dolstra
da4fb573a7
* Added ATerm 2.8. Also removed some old versions and patches that
...
were no longer in use.
* A patch for compiling the ATerm library with GCC 4.3. Without it,
the code for resizing ATerm tables gets stuck in an infinite loop
(http://bugzilla.sen.cwi.nl:8080/show_bug.cgi?id=841 ). The problem
is in this bit of code in hash.c, which tries to dynamically figure
out the maximum signed integer:
long try_long_max;
long long_max;
long delta;
try_long_max = 1;
do {
long_max = try_long_max;
try_long_max = long_max * 2;
} while (try_long_max > 0);
At -O2, GCC 4.3 determines that 1 * 2 * 2 * ... can never be <= 0,
and so it optimises this into a 1-instruction infinite loop:
0x0805a782 <keyPut+1282>: jmp 0x805a782 <keyPut+1282>
Quite beautiful really. ;-)
The fix is to use the LONG_MAX macro instead.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13888
2009-01-27 17:46:07 +00:00
Eelco Dolstra
e5349d1716
* Linux 2.6.27.13 and 2.6.28.2.
...
svn path=/nixpkgs/trunk/; revision=13887
2009-01-27 14:56:17 +00:00
Nicolas Pierron
74630be169
Replace addLocation by addErrorContext.
...
pkgs.lib.addErrorContext add a new line inside the stack trace if this is supported by your nix version.
svn path=/nixpkgs/trunk/; revision=13886
2009-01-27 14:46:41 +00:00
Eelco Dolstra
8b9fb752b6
* mingetty 1.08.
...
svn path=/nixpkgs/trunk/; revision=13884
2009-01-27 14:14:42 +00:00
Nicolas Pierron
aa27e34a2e
Remove python reference from comment.
...
svn path=/nixpkgs/trunk/; revision=13883
2009-01-27 14:08:49 +00:00
Nicolas Pierron
a130392234
Suggest nice/readable example first for composableDerivation.
...
svn path=/nixpkgs/trunk/; revision=13882
2009-01-27 14:01:00 +00:00
Nicolas Pierron
507ab31cbe
Add ragel: A state machine compiler.
...
svn path=/nixpkgs/trunk/; revision=13881
2009-01-27 14:00:54 +00:00
Eelco Dolstra
76efe57d1b
* GCC mirrors.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13878
2009-01-27 12:48:32 +00:00
Eelco Dolstra
cfda61c7c6
* GCC 4.3.3, just in time too :-)
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13877
2009-01-27 11:53:35 +00:00
Eelco Dolstra
a5b607ef4f
* Bash 3.2.48.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13876
2009-01-27 11:03:41 +00:00
Eelco Dolstra
88c502217b
* coreutils 7.0 already has the backwards compatibility patch for old
...
Linux kernels.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13875
2009-01-27 10:51:54 +00:00
Lluís Batlle i Rossell
c5a95e894e
Adding opencascade 6.4.0.
...
svn path=/nixpkgs/trunk/; revision=13874
2009-01-27 08:14:27 +00:00
Ludovic Courtès
730fe26fa0
Inkscape: Work around libpng's unhappiness.
...
svn path=/nixpkgs/trunk/; revision=13873
2009-01-26 18:51:52 +00:00
Nicolas Pierron
c333a6ab6b
Add missing arguments to the "notHandle" functions of mergeOptionSets and filterOptionSets.
...
svn path=/nixpkgs/trunk/; revision=13872
2009-01-25 22:37:10 +00:00
Nicolas Pierron
74df154f73
Fix previous commit.
...
svn path=/nixpkgs/trunk/; revision=13870
2009-01-25 22:25:38 +00:00
Nicolas Pierron
c2be87e132
Remove support for merge function with name argument.
...
svn path=/nixpkgs/trunk/; revision=13869
2009-01-25 21:23:47 +00:00
Lluís Batlle i Rossell
6c2c6d7fe4
Fixing commits I did, which didn't follow well the writing rules.
...
svn path=/nixpkgs/trunk/; revision=13868
2009-01-25 21:03:07 +00:00
Lluís Batlle i Rossell
09d68fcad2
First steps trying to build VirtualBox. I haven't finished.
...
I left before trying to install and run the files compiled.
svn path=/nixpkgs/trunk/; revision=13863
2009-01-25 20:09:17 +00:00
Ludovic Courtès
52474a1f6c
C++ bindings of the GTK+ 2.14 libraries.
...
svn path=/nixpkgs/trunk/; revision=13862
2009-01-25 17:01:29 +00:00
Lluís Batlle i Rossell
c844c68142
Adding yafc-1.1.1
...
svn path=/nixpkgs/trunk/; revision=13846
2009-01-25 14:31:51 +00:00
Lluís Batlle i Rossell
fb1fd1115f
Adding Intel ACPI Compiler (trying to build virtualbox)
...
svn path=/nixpkgs/trunk/; revision=13845
2009-01-25 14:31:42 +00:00
Lluís Batlle i Rossell
e44ec52b45
Adding dev86 (I'll try to get virtualbox built)
...
svn path=/nixpkgs/trunk/; revision=13844
2009-01-25 14:31:24 +00:00
Ludovic Courtès
e8847fd2e7
Cairo: Arrange so that Freetype `-I' flags are propagated.
...
svn path=/nixpkgs/trunk/; revision=13843
2009-01-25 11:50:29 +00:00
Nicolas Pierron
c1b9946c28
Name argument of option's merge functions are now obsolete.
...
svn path=/nixpkgs/trunk/; revision=13842
2009-01-25 00:31:43 +00:00
Nicolas Pierron
daa6f9c7ef
Add a common merge function. (mergeOneOption)
...
This merge function allow only one definition for an option.
svn path=/nixpkgs/trunk/; revision=13841
2009-01-25 00:31:38 +00:00
Nicolas Pierron
9581664fb9
Add the "notdef" value when no else-part is defined.
...
Remove the "notdef" values from the user-defined values.
svn path=/nixpkgs/trunk/; revision=13840
2009-01-25 00:31:33 +00:00
Nicolas Pierron
57f66db54c
Remove extra arguments from uniqFlatten.
...
Clean-up fixOptionSetsFun.
svn path=/nixpkgs/trunk/; revision=13839
2009-01-25 00:31:29 +00:00