summary refs log tree commit diff
path: root/pkgs/games
Commit message (Collapse)AuthorAge
...
* * Rogue 5.4.4.Eelco Dolstra2008-08-27
| | | | svn path=/nixpkgs/trunk/; revision=12745
* Changed builderDefs to use composedArgsAndFun, reduced number of nulls, made ↵Michael Raskin2008-08-19
| | | | | | overrides in builderDefsPackage to work in an intuitive manner. svn path=/nixpkgs/trunk/; revision=12655
* Big breaking change. I have radically reduced number of nulls used in ↵Michael Raskin2008-08-14
| | | | | | all-packages.nix and generally switched to composedArgsAndFun which simply adds .meta.function to everything that has come through it.. I have not tested the build, because OO.o has to be updated... svn path=/nixpkgs/trunk/; revision=12625
* Added lincity - a city simulation. And if I build houses, I build houses here.Michael Raskin2008-08-08
| | | | svn path=/nixpkgs/trunk/; revision=12539
* Added:Marc Weber2008-08-06
| | | | | | | | | | * dmenu * gftp * micropolis * byacc as a build-time dependency for micropolis contributed by baldo <baldo@quimby.lan> svn path=/nixpkgs/trunk/; revision=12526
* * Exult 1.4 snapshot.Eelco Dolstra2008-07-12
| | | | svn path=/nixpkgs/trunk/; revision=12349
* * Really fix Exult on x86_64 now.Eelco Dolstra2008-06-25
| | | | svn path=/nixpkgs/trunk/; revision=12188
* * Fixes for a52dec and mpeg2dec to make vlc build on x86_64-linux.Eelco Dolstra2008-06-25
| | | | | | | | | | * Fixes to make par2cmdline and exult build on gcc 4.x, since gcc 3.4.x doesn't seem to work on x86_64-linux (NIXPKGS-91). * Disabled pidgin on x86_64-linux because it needs a dynamic libperl which we don't have right now. * Disabled wine on x86_64-linux because we still lack -m32 support. svn path=/nixpkgs/trunk/; revision=12187
* * ioquake: updated to 1.34rc3.Eelco Dolstra2008-06-14
| | | | | | | | | * rss-glx: fixed the build. * Removed the OpenGL wrapper stuff, it's no longer needed (thanks to the RUNPATH you just need to put the appropriate libGL.so in the LD_LIBRARY_PATH). svn path=/nixpkgs/trunk/; revision=12093
* Add new game: openttd.Nicolas Pierron2008-04-10
| | | | svn path=/nixpkgs/trunk/; revision=11553
* version updateTobias Hammerschmidt2008-04-08
| | | | svn path=/nixpkgs/trunk/; revision=11495
* fixed skype, wesnoth updated to version 1.4Tobias Hammerschmidt2008-03-10
| | | | svn path=/nixpkgs/trunk/; revision=11033
* update to 0.11.1Armijn Hemel2008-03-03
| | | | svn path=/nixpkgs/trunk/; revision=10925
* Added src to meta for builderDefs-based packages.Michael Raskin2008-03-02
| | | | svn path=/nixpkgs/trunk/; revision=10913
* Wesnoth 1.3.18 aka 1.4-rc1Tobias Hammerschmidt2008-02-20
| | | | svn path=/nixpkgs/trunk/; revision=10775
* update to Wesnoth 1.3.16 aka 1.4-beta3Tobias Hammerschmidt2008-02-13
| | | | svn path=/nixpkgs/trunk/; revision=10665
* added Battle for Wesnoth, a free, turn-based strategy gameTobias Hammerschmidt2008-02-06
| | | | svn path=/nixpkgs/trunk/; revision=10529
* update to 0.11Armijn Hemel2008-02-06
| | | | svn path=/nixpkgs/trunk/; revision=10526
* Nix-expr style reviewYury G. Kudryashov2008-01-30
| | | | | | | | | | | | Unneded args.something replaced with args: with args; line. After this line args is the only place where we can recieve variables from. Also removed several buildInputs = []; lines. svn path=/nixpkgs/trunk/; revision=10415
* Added Orbit space flight simulation. Unfortunately, it doesn't feature gravity. Michael Raskin2008-01-22
| | | | svn path=/nixpkgs/trunk/; revision=10249
* Some review of builder-defs and dependent files. No rebuild needed. Now it ↵Michael Raskin2008-01-18
| | | | | | should be possible to override elements in builderDefs svn path=/nixpkgs/trunk/; revision=10214
* Added PostgreSQL job.Michael Raskin2007-12-03
| | | | svn path=/nixpkgs/trunk/; revision=9831
* Fixed log nesting; added Qi.Michael Raskin2007-11-08
| | | | svn path=/nixpkgs/trunk/; revision=9601
* Added a new setup proposal, builder is no more derived from shell script ↵Michael Raskin2007-10-29
| | | | | | (where edit=glibc rebuild), but is composed from a nix attribute set with strings and dependencies - so if you add a function, old expressions ignore it; collateral damage are packages in this style: Fastest Fourier Transform in the West, Audacity sound editor, Falling Sand game. Also added string equality that ignores dependencies to lib. Note that hasSuffixHack is now the more predictable version, but hasSuffix is left to remind us to fix the bug. svn path=/nixpkgs/trunk/; revision=9549
* The Falling Sand Game itself.Michael Raskin2007-10-27
| | | | svn path=/nixpkgs/trunk/; revision=9544
* * Rewrite all the SourceForge URLs to mirror://sourceforge/.Eelco Dolstra2007-08-27
| | | | | | find . -name "*.nix" | while read fn; do sed 's^http://[a-z]*.dl.sourceforge.net/sourceforge/^mirror://sourceforge/^g' < $fn > $fn.new; mv $fn.new $fn; done svn path=/nixpkgs/trunk/; revision=9198
* * Support for mirror:// URLs a la Gentoo (NIXPKGS-70). Instead ofEelco Dolstra2007-08-27
| | | | | | | | | | | | | | | | | | | | | | | | | | fetchurl { url = http://heanet.dl.sourceforge.net/sourceforge/zapping/zapping-0.9.6.tar.bz2; md5 = "8306775c6a11de4d72345b5eee970ea6"; }; you can write fetchurl { url = mirror://sourceforge/zapping/zapping-0.9.6.tar.bz2; md5 = "8306775c6a11de4d72345b5eee970ea6"; }; which causes fetchurl to try the SourceForge mirrors listed in the `sourceforge' attribute in build-support/fetchurl/mirrors.nix. (They're currently tried in sequence, and the lists of mirrors are not configurable yet.) The syntax for mirror URLs is mirror://site/path/to/file, where `site' is currently one of `sourceforge', `gnu' (mirrors of ftp://ftp.gnu.org/pub/gnu) and `kernel' (mirrors of http://www.all.kernel.org/pub/). svn path=/nixpkgs/trunk/; revision=9197
* * 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
* Added ThePenguinMachine. Build technically broken (but dumps compile dir to ↵Michael Raskin2007-08-09
| | | | | | /tmp, and it runs from there.. I want to fix it first), and it crashes in a very strage way. svn path=/nixpkgs/trunk/; revision=9084
* update to 0.10.0Armijn Hemel2007-06-25
| | | | svn path=/nixpkgs/trunk/; revision=8918
* * Use a non-corrupt copy of linuxq3apoint-1.31.x86.run.Eelco Dolstra2007-05-27
| | | | | | | | * Make the baseq3 files a fixed-output derivation, so that if (say) stdenv changes, it doesn't have to be rebuilt. This is nice because the baseq3 directory is pretty big. svn path=/nixpkgs/trunk/; revision=8781
* * Fixed the Q3A URLs.Eelco Dolstra2007-05-27
| | | | svn path=/nixpkgs/trunk/; revision=8778
* * Added GemRB, a reimplementation of the Infinity Engine.Eelco Dolstra2007-05-14
| | | | svn path=/nixpkgs/trunk/; revision=8695
* svn path=/nixpkgs/trunk/; revision=8653Eelco Dolstra2007-05-03
|
* * Latest ScummVM.Eelco Dolstra2007-05-03
| | | | svn path=/nixpkgs/trunk/; revision=8652
* * Now Nixpkgs is officially complete.Eelco Dolstra2007-01-08
| | | | svn path=/nixpkgs/trunk/; revision=7573
* * Remove references to dontMakeInstall.Eelco Dolstra2006-12-27
| | | | svn path=/nixpkgs/trunk/; revision=7500
* * Oops, don't assume dosbox to be in $PATH.Eelco Dolstra2006-11-26
| | | | svn path=/nixpkgs/trunk/; revision=7135
* * Use a proper distribution.Eelco Dolstra2006-10-28
| | | | svn path=/nixpkgs/trunk/; revision=6896
* * An example of supporting legacy applications using dosbox ;-)Eelco Dolstra2006-10-28
| | | | svn path=/nixpkgs/trunk/; revision=6895
* * Renamed orig-glibc -> orig-libc in some places, and in others, useEelco Dolstra2006-10-27
| | | | | | | the new $NIX_GCC/nix-support/dynamic-linker file to locate the dynamic linker directly (don't hardcode ld-linux.so.2). svn path=/nixpkgs/trunk/; revision=6873
* * `drv + /path' is deprecated, so don't do that anymore.Eelco Dolstra2006-10-17
| | | | svn path=/nixpkgs/trunk/; revision=6754
* * Copy a bunch of files to nix.cs.uu.nl.Eelco Dolstra2006-10-12
| | | | svn path=/nixpkgs/trunk/; revision=6711
* * More descriptions.Eelco Dolstra2006-10-12
| | | | svn path=/nixpkgs/trunk/; revision=6709
* * Added a bunch of descriptions.Eelco Dolstra2006-10-11
| | | | svn path=/nixpkgs/trunk/; revision=6705
* * Exult now with glorious Roland MT-32 music!Eelco Dolstra2006-09-12
| | | | svn path=/nixpkgs/trunk/; revision=6503
* * Added Exult.Eelco Dolstra2006-09-12
| | | | svn path=/nixpkgs/trunk/; revision=6501
* * Don't use the subpath operator (~) anymore, it's subsumed by normalEelco Dolstra2006-08-09
| | | | | | concatenation (+). svn path=/nixpkgs/trunk/; revision=6080
* add scummvm (scummvm.sf.net)Armijn Hemel2006-08-08
| | | | svn path=/nixpkgs/trunk/; revision=6079
* * Copy even more files (in particular from losser.st-lab.cs.uu.nl,Eelco Dolstra2006-01-30
| | | | | | can't assume that it will live forever). svn path=/nixpkgs/trunk/; revision=4624