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
Ludovic Courtès
05963ee44b
PulseAudio: Tell `padsp' the right library path.
...
svn path=/nixpkgs/trunk/; revision=13909
2009-01-29 19:27:31 +00:00
Ludovic Courtès
6085b298ae
Mount `/dev/shm' (shared memory support).
...
svn path=/nixos/trunk/; revision=13908
2009-01-29 19:17:55 +00:00
Ludovic Courtès
2b8216bdda
Add Upstart job for PulseAudio as a system-wide daemon.
...
svn path=/nixos/trunk/; revision=13907
2009-01-29 18:28:09 +00:00
Eelco Dolstra
42a83d3391
svn path=/nixos/trunk/; revision=13906
2009-01-29 17:50:28 +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
91339eaae1
* splashutils 1.5 is currently broken on x86_64.
...
svn path=/nixpkgs/trunk/; revision=13904
2009-01-29 17:05:38 +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
a3f778c23d
* CUPS: use /etc/cups rather than ${cups}/etc/cups as the ServerRoot,
...
because CUPS modifies files in the ServerRoot directory. Most
importantly, it stores printer configuration there. Previously the
CUPS server modified the files under ${cups}/etc/cups, which is
impure and caused all configured printers to disappear any time CUPS
was upgraded.
svn path=/nixos/trunk/; revision=13892
2009-01-28 14:48:37 +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
Sander van der Burg
016e4dc5c3
Increased the sleep hack on the Tomcat service
...
svn path=/nixos/trunk/; revision=13890
2009-01-28 12:19:42 +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
Sander van der Burg
7ac9e76eb6
Some fixes to the Apache Tomcat connector
...
svn path=/nixos/trunk/; revision=13879
2009-01-27 13:02:56 +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
Nicolas Pierron
c3f848e2d6
Remove name arguments from obsolete options.
...
svn path=/nixos/trunk/; revision=13864
2009-01-25 20:47:30 +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
Nicolas Pierron
1c1c1e0b15
Add a section to help user to extend NixOS.
...
svn path=/nixos/branches/fix-style/; revision=13861
2009-01-25 15:49:27 +00:00
Nicolas Pierron
ecc761543c
Remove name argument of merge functions.
...
svn path=/nixos/branches/fix-style/; revision=13860
2009-01-25 15:49:23 +00:00
Nicolas Pierron
dcc981840e
Use the mergeOneOption function instead of duplicated code.
...
svn path=/nixos/branches/fix-style/; revision=13859
2009-01-25 15:49:18 +00:00
Nicolas Pierron
639be32a8a
Remove obsolete notation. (backwardPkgsFun*)
...
svn path=/nixos/branches/fix-style/; revision=13858
2009-01-25 15:49:12 +00:00
Nicolas Pierron
b2b6f92d6b
Split xserver upstart job into:
...
- xserver configuration & job
- display manager (slim)
- window manager (compiz, kwm, metacity, twm, wmii, xmonad)
- desktop manager (kde, gnome, xterm)
Added features:
- Add WM choice in slim (with F1)
svn path=/nixos/branches/fix-style/; revision=13857
2009-01-25 15:49:08 +00:00
Nicolas Pierron
fa3437cb35
Remove enableIntel* and enableGo7007 options.
...
Update nixos-hardware-scan.pl to generate files without these options.
svn path=/nixos/branches/fix-style/; revision=13856
2009-01-25 15:48:59 +00:00
Nicolas Pierron
6086aee542
* The Linux kernel >= 2.6.27 provides firmware, so add it to the
...
firmware search path.
(Patch from Eelco Dolstra)
svn path=/nixos/branches/fix-style/; revision=13855
2009-01-25 15:48:53 +00:00