Eelco Dolstra
90254f5a4e
* Update to 1.4.
...
svn path=/nixpkgs/trunk/; revision=4645
2006-01-31 16:36:43 +00:00
Armijn Hemel
0d3400daf9
add udev rules, but make them optional (default == off)
...
svn path=/nixpkgs/trunk/; revision=4643
2006-01-31 16:00:05 +00:00
Armijn Hemel
761dceaaae
fix a comparison in the test
...
svn path=/nixpkgs/trunk/; revision=4642
2006-01-31 15:53:58 +00:00
Eelco Dolstra
b8a0ebe410
* kdelibs 3.5.0.
...
* Make it detect bzip2; this is required for "meinproc".
svn path=/nixpkgs/trunk/; revision=4641
2006-01-31 15:22:10 +00:00
Armijn Hemel
0c6fa511b9
add linuxwacom. Now, this is still without the driver for X (even though
...
I don't know how that has to be used in X)
svn path=/nixpkgs/trunk/; revision=4640
2006-01-31 15:18:27 +00:00
Armijn Hemel
6d76f21f43
add gphoto2
...
svn path=/nixpkgs/trunk/; revision=4638
2006-01-31 14:22:08 +00:00
Armijn Hemel
f102909a83
update to libgphoto2 2.1.99. This adds a dependency on libusb and pkgconfig
...
svn path=/nixpkgs/trunk/; revision=4637
2006-01-31 14:07:25 +00:00
Eelco Dolstra
0e09f5a1e0
* Copy files.
...
svn path=/nixpkgs/trunk/; revision=4636
2006-01-31 13:51:38 +00:00
Eelco Dolstra
a9df2bc8b6
* Latest valgrind, callgrind.
...
* Build callgrind so that it doesn't need its own copy of valgrind.
* Add kcachegrind and callgrind to the cache.
svn path=/nixpkgs/trunk/; revision=4635
2006-01-31 13:50:49 +00:00
Armijn Hemel
13398fe348
remove some assertions
...
svn path=/nixpkgs/trunk/; revision=4634
2006-01-31 13:01:58 +00:00
Armijn Hemel
3ce62c7a5e
add hotplugging stuff conditionally
...
svn path=/nixpkgs/trunk/; revision=4633
2006-01-31 12:59:06 +00:00
Eelco Dolstra
ce92a4d1b1
* NVidia support.
...
svn path=/nixpkgs/trunk/; revision=4628
2006-01-30 21:59:28 +00:00
Eelco Dolstra
4e684bbf5a
* Better names.
...
svn path=/nixpkgs/trunk/; revision=4625
2006-01-30 16:19:53 +00:00
Eelco Dolstra
9f898a586b
* Copy even more files (in particular from losser.st-lab.cs.uu.nl,
...
can't assume that it will live forever).
svn path=/nixpkgs/trunk/; revision=4624
2006-01-30 16:11:00 +00:00
Eelco Dolstra
3389f4bc36
* Copy lots of files to nix.cs.uu.nl.
...
svn path=/nixpkgs/trunk/; revision=4623
2006-01-30 16:04:03 +00:00
Eelco Dolstra
53c56afcfe
* Fix some broken URLs.
...
svn path=/nixpkgs/trunk/; revision=4622
2006-01-30 15:52:15 +00:00
Armijn Hemel
37d1db32f0
upgrade to 0.172
...
svn path=/nixpkgs/trunk/; revision=4621
2006-01-30 15:42:01 +00:00
Armijn Hemel
9cb897da18
update to 1.0.17, put some stuff in place for hotplugging support...
...
svn path=/nixpkgs/trunk/; revision=4620
2006-01-30 15:29:26 +00:00
Armijn Hemel
accbe1d1a7
update to jdk-1_5_0_06-linux-i586.bin
...
svn path=/nixpkgs/trunk/; revision=4618
2006-01-30 14:25:19 +00:00
Eelco Dolstra
e879f0648f
* M-x sort-lines is your friend.
...
svn path=/nixpkgs/trunk/; revision=4617
2006-01-30 12:54:26 +00:00
Eelco Dolstra
3ba77c1b40
* Get the Unreal Tournament 2004 demo to work with the new scheme for
...
handling OpenGL.
svn path=/nixpkgs/trunk/; revision=4616
2006-01-30 11:44:39 +00:00
Andres Löh
70c36821c6
* updated darcs to 1.0.5, added curl dependency
...
* added an experimental fetchdarcs function, based on fetchsvn
(there are no expressions yet that use this function)
svn path=/nixpkgs/trunk/; revision=4615
2006-01-30 11:18:38 +00:00
Eelco Dolstra
105150e281
* Added rss-glx, a collection of nice OpenGL screensavers.
...
svn path=/nixpkgs/trunk/; revision=4614
2006-01-28 02:10:26 +00:00
Eelco Dolstra
410f21887a
* A quick hack to get accelerated OpenGL working: just use the driver
...
in /usr/lib/libGL.so.1 (which will typically load a driver in
/usr/X11R6/lib/modules/dri). This has been tested on a i915
graphics card; it should work with most open source X.org drivers.
For NVidia's proprietary drivers (which we cannot build ourselves
anyway), some more symlinks are necessary; I'll add those later.
So to get hardware-accelerated Quake 3, do:
$ nix-env -p /nix/var/nix/profiles/opengl -i xorg-sys-opengl
$ nix-env -i quake3-demo
$ quake3
svn path=/nixpkgs/trunk/; revision=4613
2006-01-28 01:13:31 +00:00
Eelco Dolstra
7f74c406c4
* In Quake 3, by default use Mesa as the OpenGL implementation. But
...
allow the OpenGL implementation to be overriden through the
OPENGL_DRIVER environment variable. If it is not set, we use the
implementation installed in the profile
/nix/var/nix/profiles/opengl, allowing easy late binding by the
user, e.g.,
$ nix-env -p /nix/var/nix/profiles/opengl -i nvidia-sys-opengl
might install the NVidia OpenGL implementation.
The code that does this is not specific to Quake 3: it has been
factored out into build-support/opengl/mesa-switch.sh. Presumably
any application that requires hardware-accelerated OpenGL needs it.
* Add the Quake 3 demo to the cache.
svn path=/nixpkgs/trunk/; revision=4612
2006-01-28 00:41:16 +00:00
Eelco Dolstra
3263d078dd
* Get the Quake 3 demo data to work with the open source Quake 3.
...
quake3/demo takes care of downloading and patching the required PAK
files. quake3/wrapper calls the Quake binary with a synthesised
directory of symlinks to activated PAK files. This should make it
easy to plug in the commercial PAKs, or third-party mods.
svn path=/nixpkgs/trunk/; revision=4611
2006-01-27 23:51:36 +00:00
Eelco Dolstra
14fbcfa64c
* ALSA library updated to 1.0.10.
...
svn path=/nixpkgs/trunk/; revision=4610
2006-01-27 23:48:28 +00:00
Andres Löh
719217d77a
* modified tetex to support extra .sty's from other packages
...
* added lazylist and polytable (both tetex packages)
* added lhs2tex ebuild, depending on the two above
svn path=/nixpkgs/trunk/; revision=4609
2006-01-27 20:51:41 +00:00
Christof Douma
8d4e61d096
change uulib to store all dependencies to package.conf
...
added ghc-wrapper to use a generated global package.conf
added uuagc
svn path=/nixpkgs/trunk/; revision=4608
2006-01-27 10:16:15 +00:00
Eelco Dolstra
69b41650ad
* Fix an annoying problem with xmms's ALSA output driver. Thanks
...
SuSE!
svn path=/nixpkgs/trunk/; revision=4607
2006-01-26 23:34:22 +00:00
Armijn Hemel
cb27290a7a
add xterm. Untested in NixOS (but will be in 10 minutes)
...
svn path=/nixpkgs/trunk/; revision=4604
2006-01-26 20:45:11 +00:00
Armijn Hemel
84008ec181
GIMP Python plugins also needs pygtk. TODO: factor these out, so we can also
...
build and run without Python
svn path=/nixpkgs/trunk/; revision=4603
2006-01-26 20:09:23 +00:00
Eelco Dolstra
6557c84b19
* Fix the fix.
...
svn path=/nixpkgs/trunk/; revision=4601
2006-01-26 18:53:45 +00:00
Armijn Hemel
51187822eb
add python to the right list of inherit thingies. Doh!
...
svn path=/nixpkgs/trunk/; revision=4600
2006-01-26 18:53:43 +00:00
Armijn Hemel
691e719ef0
fix the Nix expression, so it evaluates correctly...
...
svn path=/nixpkgs/trunk/; revision=4599
2006-01-26 18:50:25 +00:00
Armijn Hemel
ef4dedff3a
add undocumented dependency (python) and upgrade to new version
...
svn path=/nixpkgs/trunk/; revision=4598
2006-01-26 18:45:50 +00:00
Armijn Hemel
531d25dafa
package has moved...and there's a new version out btw...
...
svn path=/nixpkgs/trunk/; revision=4597
2006-01-26 16:47:27 +00:00
Eelco Dolstra
d24417654c
* Put a tarball of the Quake 3 sources somewhere.
...
svn path=/nixpkgs/trunk/; revision=4596
2006-01-26 15:31:37 +00:00
Eelco Dolstra
059858741c
* Added basic Quake 3. Some wrapper stuff is still needed to get it
...
to work "out of the box" with hardware acceleration and either the
shareware or full PAK files. But with some hackery, I have gotten
it to work with both Mesa software rendering and NVidia hardware
rendering.
svn path=/nixpkgs/trunk/; revision=4595
2006-01-26 14:43:05 +00:00
Eelco Dolstra
8544fe567a
* Added the OpenAL sound library.
...
* Enabled (optional) 3D support in SDL.
svn path=/nixpkgs/trunk/; revision=4594
2006-01-26 14:01:08 +00:00
Roy van den Broek
af5e956d23
* Let subversitnWithJava use jdk in stead of blackdown
...
* Disable jikes when building subversion with javahl bindings
svn path=/nixpkgs/trunk/; revision=4589
2006-01-25 14:03:55 +00:00
Christof Douma
84e89e2fca
added uulib - a ghc library (ghc wrapper is needed to use it with cabal - see comments in builder.sh)
...
svn path=/nixpkgs/trunk/; revision=4588
2006-01-25 11:19:21 +00:00
Armijn Hemel
7625850ab3
a patch which defines FLAGS_FOR_TARGET. This patch is not enabled by default
...
svn path=/nixpkgs/trunk/; revision=4585
2006-01-23 11:53:33 +00:00
Eelco Dolstra
57315e624d
* Fix the gcc-4.0.2 build. It was impure: it used /lib/cpp during the
...
building of libstdc++.
* Add gcc-4.0.2 to the channel.
svn path=/nixpkgs/trunk/; revision=4583
2006-01-20 17:27:53 +00:00
Eelco Dolstra
ded57fa9d0
* Provide the xlibs attribute in xlibs.
...
svn path=/nixpkgs/trunk/; revision=4582
2006-01-20 14:44:00 +00:00
Armijn Hemel
5941ccfbea
fix xawtv install
...
svn path=/nixpkgs/trunk/; revision=4580
2006-01-20 12:10:28 +00:00
Armijn Hemel
3e9727a48d
add xawtv here
...
svn path=/nixpkgs/trunk/; revision=4579
2006-01-20 11:30:24 +00:00
Armijn Hemel
394e18e667
disable xawtv and ov511...
...
svn path=/nixpkgs/trunk/; revision=4577
2006-01-18 00:07:35 +00:00
Armijn Hemel
42b387e041
add xawtv, ov511 kernel driver
...
svn path=/nixpkgs/trunk/; revision=4576
2006-01-17 23:47:49 +00:00
Eelco Dolstra
d53e98bd20
* Disable xauth in the cache.
...
svn path=/nixpkgs/trunk/; revision=4575
2006-01-17 22:34:44 +00:00