Commit Graph

5048 Commits

Author SHA1 Message Date
Eelco Dolstra
d449c4db98 * Remove Python 2.6, since the only remaining package that used it
(Calibre) also works with 2.7.

svn path=/nixpkgs/branches/modular-python/; revision=26561
2011-03-28 11:50:47 +00:00
Eelco Dolstra
8ca5d5d8b6 * Move python/2.7/modules.nix into python/2.7/default.nix. Also
remove the pythonModules attribute.  The built-in modules are now
  accessible as (e.g.) "python.modules.ssl" or "pythonPackages.ssl".

svn path=/nixpkgs/branches/modular-python/; revision=26559
2011-03-28 09:48:57 +00:00
Michael Raskin
1233bbb9fa Adding PicoLisp
svn path=/nixpkgs/trunk/; revision=26558
2011-03-28 08:16:15 +00:00
Evgeny Egorochkin
9da3ee5281 ustr: cleanup
svn path=/nixpkgs/trunk/; revision=26556
2011-03-27 23:31:31 +00:00
Lluís Batlle i Rossell
3df4a63ec2 Adding some skeleton for btanks. It needs smpeg still, to build.
svn path=/nixpkgs/trunk/; revision=26554
2011-03-27 21:18:05 +00:00
Lluís Batlle i Rossell
723fce8d57 Adding the pacman-like game njam.
svn path=/nixpkgs/trunk/; revision=26553
2011-03-27 20:35:08 +00:00
Eelco Dolstra
997a5c8ef3 * Revert r26507, which I assume was intented for the stdenv branch.
svn path=/nixpkgs/trunk/; revision=26550
2011-03-27 19:03:06 +00:00
Lluís Batlle i Rossell
6f30a10a2d Adding bzflag.
svn path=/nixpkgs/trunk/; revision=26549
2011-03-27 16:35:45 +00:00
Lluís Batlle i Rossell
1357904982 Committing the aufs2.1 patch by Shea Levy. His comments:
* My motivation for this patch is that kernels < 2.6.36 contain an
     e1000e that does not support the ethernet card that is part of the
     chipset for the second-generation Core-i Intel CPUs, so in order
     to have a more useful livecd I needed to get aufs working with a
     newer kernel, and 2.6.37 is the latest kernel with an official
     aufs release.
   * All sources are downloaded with fetchgit. This is because the aufs
     upstream doesn't provide release tarballs, they just add a tag to
     their git tree for an official release.
   * The make target for the aufs2.1 headers uses a Makefile in the
     kernel build directory that requires that unifdef be in the
     scripts/ subdirectory of the build directory. The way I've dealt
     with this here is by adding "make $makeFlags -C scripts unifdef"
     to the postBuild in the kernel builder. Since the builder is used
     by all kernel versions, this will require rebuilding every kernel
     and kernel-dependent package if the patch is accepted, so one
     alternative I thought of would be to create a fake kernel build
     directory where everything is symlinked to the real build
     directory except scripts/, which is first copied and then make
     unifdef is run before building aufs2.1. If that more complicated
     solution is preferred, or if anyone has ideas for another one, I
     can do that and submit a new patch.
   * The patch was tested by building a livecd ISO that uses it, then
     running the ISO from within virtualbox and installing aufs2.1-util
     from within the livecd environment.
   * The livecd was built using installation-cd-minimal.nix, with two
     changes to the Nixos tree:
        1. boot.kernelPackages = pkgs.linuxPackages_2_6_37 was added to
           profiles/minimal.nix
        2. config.boot.kernelPackages.aufs2 was changed to
           config.boot.kernelPackages.aufs2_1 in iso-image.nix
     I would have preferred to keep all changes within
     profiles/minimal.nix, but I couldn't figure out how to override
     iso-image.nix's definition of boot.extraModulePackages. Livecds
     that use an older kernel can't be built with this iso-image.nix,
     since we don't have aufs2.1 for them (just aufs2). If someone can
     point me to how I can override things set in iso-image.nix, I'd
     appreciate it.

make -C scripts unifdef compiles the unifdef application in the
scripts/ directory, and when Nix copies over the build tree to
$out/lib/modules/$version/build for kernel modules to reference, it
copies over all of scripts/ except the .o files. I can't speak for
other kernel versions, but at the least for 2.6.37.1 unifdef is not
built by default. If you look at the Makefile in scripts, unifdef is
listed  under a comment saying that the following programs are only
built on-demand.

svn path=/nixpkgs/trunk/; revision=26548
2011-03-27 15:18:39 +00:00
Russell O'Connor
72124a0aa9 Bitcoin.
svn path=/nixpkgs/trunk/; revision=26544
2011-03-27 06:44:34 +00:00
Evgeny Egorochkin
1c9c082d00 policycoreutils: packaged
svn path=/nixpkgs/trunk/; revision=26542
2011-03-27 04:46:19 +00:00
Evgeny Egorochkin
f1201cf75f libsemanage: packaged
svn path=/nixpkgs/trunk/; revision=26541
2011-03-27 04:46:12 +00:00
Evgeny Egorochkin
836b0d259d ustr: packaged
svn path=/nixpkgs/trunk/; revision=26540
2011-03-27 04:46:05 +00:00
Evgeny Egorochkin
28f7f1c192 checkpolicy: packaged
svn path=/nixpkgs/trunk/; revision=26538
2011-03-27 04:45:46 +00:00
Evgeny Egorochkin
b653226293 Packages pycurl
svn path=/nixpkgs/trunk/; revision=26532
2011-03-26 18:23:25 +00:00
Evgeny Egorochkin
c8b82d5504 Packaged optfunc
svn path=/nixpkgs/trunk/; revision=26531
2011-03-26 18:23:20 +00:00
Evgeny Egorochkin
804bb9c8d1 polkit-gnome: packaged
svn path=/nixpkgs/trunk/; revision=26527
2011-03-26 18:18:39 +00:00
Evgeny Egorochkin
27c14e39b7 nm-applet: packaged
svn path=/nixpkgs/trunk/; revision=26526
2011-03-26 18:18:32 +00:00
Karn Kallio
1e78949539 Add expression for the simutrans game.
svn path=/nixpkgs/trunk/; revision=26523
2011-03-26 07:22:24 +00:00
Lluís Batlle i Rossell
4c3c311f75 Adding the game 'racer'. It works only in i686-linux.
svn path=/nixpkgs/trunk/; revision=26520
2011-03-25 23:33:09 +00:00
Lluís Batlle i Rossell
ef57b57b92 Adding two NES emulators.
Because of them, I made allegro build the allegrogl library.
I also added the HawkNL library.


svn path=/nixpkgs/trunk/; revision=26517
2011-03-25 22:15:48 +00:00
Peter Simons
dd123060c0 Add an expression for Darwin's install_name_tool utility, which is required by several other builds.
svn path=/nixpkgs/trunk/; revision=26509
2011-03-25 12:55:15 +00:00
Ludovic Courtès
446b09c477 Give less work to Hydra.
svn path=/nixpkgs/trunk/; revision=26507
2011-03-25 10:54:17 +00:00
Andres Löh
8adedb4957 Re-enable library profiling.
svn path=/nixpkgs/trunk/; revision=26503
2011-03-25 08:44:38 +00:00
Ludovic Courtès
37e69af39e GNU Gnash 0.8.9.
svn path=/nixpkgs/trunk/; revision=26498
2011-03-24 22:25:03 +00:00
Karn Kallio
7df7521dd1 Add the PAKCS (Portland Aachen Kiel Curry System) Curry compiler to Nixpkgs.
svn path=/nixpkgs/trunk/; revision=26497
2011-03-24 19:22:30 +00:00
Eelco Dolstra
be0d0b8a13 * Added ndisc6 (which contains IPv6 related commands such as ndisc6,
rdisc6 and rdnssd).

svn path=/nixpkgs/trunk/; revision=26492
2011-03-24 14:30:06 +00:00
Peter Simons
b38331611d Revert "man-pages-posix: renamed attribute for consistency with other man page sets".
svn path=/nixpkgs/trunk/; revision=26490
2011-03-24 12:05:34 +00:00
Peter Simons
2b3c9807e0 man-pages-posix: renamed attribute for consistency with other man page sets
svn path=/nixpkgs/trunk/; revision=26489
2011-03-24 11:49:02 +00:00
Eelco Dolstra
ca084829d6 * Added man-pages-posix (contributed by Vladimír Čunát).
svn path=/nixpkgs/trunk/; revision=26485
2011-03-24 11:44:43 +00:00
Lluís Batlle i Rossell
0b176e1bd0 Adding a first attempt of expression for wxwidgets 2.9.
It looks like building and installing. Part of the expression I copied from wxGTK 2.8,
and some parts of it may be irrelevant or wrong.


svn path=/nixpkgs/trunk/; revision=26484
2011-03-23 22:05:14 +00:00
Eelco Dolstra
9d2f691ee5 * Add Aangifte 2010.
svn path=/nixpkgs/trunk/; revision=26473
2011-03-23 16:06:36 +00:00
Peter Simons
3a75769c51 cosmetic; no functional change intended
svn path=/nixpkgs/trunk/; revision=26472
2011-03-23 15:58:02 +00:00
Peter Simons
2e24a92971 pathtype: added initial version 0.5.2
svn path=/nixpkgs/trunk/; revision=26471
2011-03-23 15:57:58 +00:00
Eelco Dolstra
f9ec20d6ec svn path=/nixpkgs/trunk/; revision=26460 2011-03-22 14:30:13 +00:00
Eelco Dolstra
769c522df6 svn path=/nixpkgs/trunk/; revision=26458 2011-03-22 13:44:25 +00:00
Eelco Dolstra
0b5a51d95b * Firefox 4.0. Completely untested.
* Removed Firefox 3.5.

svn path=/nixpkgs/trunk/; revision=26457
2011-03-22 13:36:35 +00:00
Lluís Batlle i Rossell
34deb53fd7 Adding the efibootmgr, patch sent by Shea Levy.
svn path=/nixpkgs/trunk/; revision=26456
2011-03-22 13:21:24 +00:00
Eelco Dolstra
7cbb426eae * dhclient: don't flush IPv6 addresses/routes.
svn path=/nixpkgs/trunk/; revision=26455
2011-03-22 12:55:55 +00:00
Lluís Batlle i Rossell
4fce3aceb0 Adding xbindkeys (now with all the files)
svn path=/nixpkgs/trunk/; revision=26448
2011-03-21 18:10:20 +00:00
Lluís Batlle i Rossell
f6e3d3e10d Adding tuxonice for some recent kernels.
svn path=/nixpkgs/trunk/; revision=26447
2011-03-21 15:53:22 +00:00
Lluís Batlle i Rossell
84ca32b293 Adding tuxonice for 2.6.35
svn path=/nixpkgs/trunk/; revision=26446
2011-03-21 15:42:21 +00:00
Eelco Dolstra
daff9c4bbf * Add gdk_pixbuf and pam to Chrome's library path.
svn path=/nixpkgs/trunk/; revision=26445
2011-03-21 14:49:36 +00:00
Lluís Batlle i Rossell
dd96ccf6c6 Disabling the xbindkeys reference until I'm able to commit its default.nix
svn path=/nixpkgs/trunk/; revision=26444
2011-03-21 13:17:04 +00:00
Lluís Batlle i Rossell
884eadd81c Adding xbindkeys
svn path=/nixpkgs/trunk/; revision=26436
2011-03-20 22:16:32 +00:00
Alexander Tsamutali
880d3c108f games/mars: New nixpkg.
svn path=/nixpkgs/trunk/; revision=26434
2011-03-20 18:24:39 +00:00
Alexander Tsamutali
e54a964632 development/libraries/sfml: New nixpkg.
svn path=/nixpkgs/trunk/; revision=26433
2011-03-20 18:21:37 +00:00
Andres Löh
19b2375799 Fix Haskell x11-xft package.
svn path=/nixpkgs/trunk/; revision=26430
2011-03-20 13:23:53 +00:00
Lluís Batlle i Rossell
8ab38a2828 Adding the fbcondecor patch for 2.6.37, by Shea Levy
svn path=/nixpkgs/trunk/; revision=26428
2011-03-19 20:44:45 +00:00
Andres Löh
83f99d0c38 lhs2tex version bump.
svn path=/nixpkgs/trunk/; revision=26425
2011-03-18 15:03:01 +00:00
Michael Raskin
b8c18bd6c3 Adding Linux 2.6.38
svn path=/nixpkgs/trunk/; revision=26420
2011-03-18 12:23:36 +00:00
Michael Raskin
9701661f24 Now WebKit requires libsoup 2.33
svn path=/nixpkgs/trunk/; revision=26419
2011-03-18 09:48:27 +00:00
Michael Raskin
3fa36ea4a1 Fix TWM build
svn path=/nixpkgs/trunk/; revision=26399
2011-03-17 15:51:13 +00:00
Michael Raskin
4aacdee4e1 Adding J language
svn path=/nixpkgs/trunk/; revision=26398
2011-03-17 15:36:38 +00:00
Michael Raskin
69e649b1c8 Fix firefox 4.0 evaluation
svn path=/nixpkgs/trunk/; revision=26397
2011-03-17 15:35:59 +00:00
Andres Löh
c2090d1be3 Added JAGS.
svn path=/nixpkgs/trunk/; revision=26396
2011-03-17 14:45:36 +00:00
Rob Vermaas
9f59956b41 update perlPackages.nixPerl
svn path=/nixpkgs/trunk/; revision=26389
2011-03-17 10:14:16 +00:00
Eelco Dolstra
f510e6f7e4 * Blender seems to work fine with Python 2.7.
svn path=/nixpkgs/branches/modular-python/; revision=26354
2011-03-16 10:40:13 +00:00
Eelco Dolstra
2593b6cd6e * Remove bmp, which has been unmaintained and obsolete for > 5 years.
svn path=/nixpkgs/trunk/; revision=26352
2011-03-16 10:37:58 +00:00
Eelco Dolstra
a8334929f1 * Delete Python 2.4. It was only used by "zope", which doesn't even
build.

svn path=/nixpkgs/branches/modular-python/; revision=26350
2011-03-16 09:56:19 +00:00
Eelco Dolstra
c138d8808d * Fix evaluation.
svn path=/nixpkgs/branches/modular-python/; revision=26349
2011-03-16 09:47:12 +00:00
Eelco Dolstra
b3667a1e8f * Sync with the trunk.
svn path=/nixpkgs/branches/modular-python/; revision=26347
2011-03-16 09:39:40 +00:00
Yury G. Kudryashov
a8901903b0 Add akunambol
svn path=/nixpkgs/trunk/; revision=26337
2011-03-15 23:09:33 +00:00
Yury G. Kudryashov
6923a32b33 Add funambol
svn path=/nixpkgs/trunk/; revision=26336
2011-03-15 23:09:27 +00:00
Yury G. Kudryashov
e37f85adb7 Add liblikeback
svn path=/nixpkgs/trunk/; revision=26335
2011-03-15 23:09:21 +00:00
Yury G. Kudryashov
db3b157ff6 gnokii-0.6.30, add ical and gtk support
svn path=/nixpkgs/trunk/; revision=26334
2011-03-15 23:09:14 +00:00
Yury G. Kudryashov
a9eb45ae18 Add bluedevil
svn path=/nixpkgs/trunk/; revision=26333
2011-03-15 23:09:07 +00:00
Eelco Dolstra
f208edd1a5 * Merge the x-updates branch.
svn path=/nixpkgs/trunk/; revision=26330
2011-03-15 18:29:27 +00:00
Andres Löh
1a7d72731b Added AC-Vector package.
svn path=/nixpkgs/trunk/; revision=26322
2011-03-15 13:56:55 +00:00
Lluís Batlle i Rossell
1573081b61 Adding gptfdisk (patch by Shea Levy).
I add him in the maintainers list.
I changed slightly the indentation of the expressions.


svn path=/nixpkgs/trunk/; revision=26304
2011-03-14 21:13:35 +00:00
Eelco Dolstra
3e3eac2e30 * Sync with the trunk.
svn path=/nixpkgs/branches/x-updates/; revision=26303
2011-03-14 18:26:46 +00:00
Eelco Dolstra
440c82b96f * Fix the ratpoison build (http://hydra.nixos.org/build/915825).
svn path=/nixpkgs/branches/x-updates/; revision=26296
2011-03-14 10:25:26 +00:00
Andres Löh
b043946163 More Haskell library updates.
svn path=/nixpkgs/trunk/; revision=26292
2011-03-13 11:03:49 +00:00
Andres Löh
f89b676312 Upgraded Hakyll to 2.4.3.
I know, that's not the latest version, but Hakyll-3 is rather
different from Hakyll-2 and the upgrade would require more work.

svn path=/nixpkgs/trunk/; revision=26291
2011-03-13 08:46:54 +00:00
Karn Kallio
6a33045532 Hakyll needs time >= 1.2
svn path=/nixpkgs/trunk/; revision=26290
2011-03-12 20:21:58 +00:00
Andres Löh
fd38989a38 Correcting the version of the time library used in HP 2009.
svn path=/nixpkgs/trunk/; revision=26289
2011-03-12 19:20:58 +00:00
Andres Löh
3e0ac9b040 Major Haskell packages overhaul.
Several changes, some highlights:

  * Structure of haskell-packages.nix updated. It's now easier to
    select different default versions of packages for different
    versions of GHC.

  * GHC 7.0.2 is now default.

  * Haskell Platform 2011.2.0.0 has been added and is now default.

  * Several packages have been updated
    (gtk2hs, gitit, xmonad, darcs, ...).

  * Some old packages have been removed.

svn path=/nixpkgs/trunk/; revision=26288
2011-03-12 17:28:15 +00:00
Karn Kallio
33fb7aef16 Update flapjax compiler to the latest release, version 2.1
Also add to nixpkgs new dependencies from hackage.

svn path=/nixpkgs/trunk/; revision=26283
2011-03-11 16:49:56 +00:00
Lluís Batlle i Rossell
d58c5e2821 Adding GMU, a music player for small portable devices, written in SDL.
svn path=/nixpkgs/trunk/; revision=26266
2011-03-10 22:20:35 +00:00
Lluís Batlle i Rossell
e7ed35ecd8 Adding the djview firefox plugin option.
svn path=/nixpkgs/trunk/; revision=26265
2011-03-10 21:39:09 +00:00
Eelco Dolstra
cc3d1e1c09 * Sync with trunk.
svn path=/nixpkgs/branches/x-updates/; revision=26243
2011-03-10 08:48:14 +00:00
Andres Löh
9c416145b5 Changed ghc versions in release.nix.
svn path=/nixpkgs/trunk/; revision=26218
2011-03-09 08:50:50 +00:00
Andres Löh
92db39f586 Added ghc-7.0.2.
This is supposed to become the new default version of GHC once
the new Haskell Platform is released (but only then).

svn path=/nixpkgs/trunk/; revision=26217
2011-03-09 08:29:12 +00:00
Ludovic Courtès
6e69b4dbd0 GNU GRUB 1.9 for UEFI.
Based on a patch by Shea Levy <shea@shealevy.com>.

svn path=/nixpkgs/trunk/; revision=26216
2011-03-08 23:26:41 +00:00
Lluís Batlle i Rossell
a136bd7968 Adding flann
svn path=/nixpkgs/trunk/; revision=26205
2011-03-08 09:19:37 +00:00
Lluís Batlle i Rossell
d95300f90f Adding cminpack
svn path=/nixpkgs/trunk/; revision=26204
2011-03-08 09:19:32 +00:00
Eelco Dolstra
d10651a8b7 * zOMG, a new Pan release!
* Delete gmime 2.2.x because the old version of Pan was the only
  package that needed it.

svn path=/nixpkgs/trunk/; revision=26200
2011-03-07 17:11:50 +00:00
Eelco Dolstra
f16a2dc2f6 * Sync with the trunk. Remove glib_2_28 because the branch already
has it.

svn path=/nixpkgs/branches/x-updates/; revision=26189
2011-03-07 12:17:12 +00:00
Yury G. Kudryashov
c8f0c74ecc Add vorbisgain - replaygain for ogg/vorbis
svn path=/nixpkgs/trunk/; revision=26176
2011-03-06 16:07:37 +00:00
Yury G. Kudryashov
ecf4f6b4e2 Add mkcue (an optional dep of abcde)
svn path=/nixpkgs/trunk/; revision=26175
2011-03-06 16:07:31 +00:00
Michael Raskin
6b10954921 Adding Joseki: HTTP/SparQL server based on Jena framework. Just a unpack/mix/fix paths expression relying on compiled JAR releases.
svn path=/nixpkgs/trunk/; revision=26168
2011-03-05 22:05:00 +00:00
Michael Raskin
56536b3498 Getting WebKit overrides less wrong so no libsoup 2.28 gets used
svn path=/nixpkgs/trunk/; revision=26166
2011-03-05 07:28:50 +00:00
Michael Raskin
f084b30926 Remove the breaking override for WebKit
svn path=/nixpkgs/trunk/; revision=26159
2011-03-04 13:08:11 +00:00
Eelco Dolstra
3a4b95e503 * Simplify the avahi call.
svn path=/nixpkgs/branches/x-updates/; revision=26158
2011-03-04 13:04:08 +00:00
Lluís Batlle i Rossell
a76b0fb6fa Making freecad install; it still does not find all shared objects though.
Either eigen changed the hash of the tarball, or I did not commit its latest hash.
I add boost 1.46 apart, because 1.44 does not work easily for freecad.

svn path=/nixpkgs/trunk/; revision=26151
2011-03-04 09:48:24 +00:00
Eelco Dolstra
5cc5e16104 * Remove the xen-pvclock-resume patch, which has finally been merged
into 2.6.32.

svn path=/nixpkgs/trunk/; revision=26149
2011-03-03 15:36:13 +00:00
Lluís Batlle i Rossell
7912200505 Adding libf2c
svn path=/nixpkgs/trunk/; revision=26144
2011-03-03 13:41:06 +00:00
Eelco Dolstra
eb4b1e8b04 * Sync with the trunk.
svn path=/nixpkgs/branches/x-updates/; revision=26141
2011-03-03 12:02:50 +00:00
Lluís Batlle i Rossell
d11c00e5a5 Adding xercesc, the references to coin3d and soqt, and trying to add
freecad (that still does not build).

svn path=/nixpkgs/trunk/; revision=26135
2011-03-02 17:18:30 +00:00
Lluís Batlle i Rossell
e1cf8f90e6 Adding GNU Triangulated Surface library
svn path=/nixpkgs/trunk/; revision=26132
2011-03-02 17:18:15 +00:00
Peter Simons
f073bf2a3e esniper 2.24.0 is a simple, lightweight tool for sniping eBay auctions.
svn path=/nixpkgs/trunk/; revision=26086
2011-02-24 11:25:16 +00:00
Yury G. Kudryashov
eb85a47f9e Cleanup 'rec {'
svn path=/nixpkgs/branches/x-updates/; revision=26065
2011-02-23 10:04:50 +00:00
Marco Maggesi
3c10d32ad0 Oops... Fix alphabetical order in all-packages.nix
svn path=/nixpkgs/trunk/; revision=26064
2011-02-22 21:07:36 +00:00
Marco Maggesi
a297ef5966 Add lsscsi
svn path=/nixpkgs/trunk/; revision=26063
2011-02-22 20:57:17 +00:00
Ludovic Courtès
eba1278e84 guile-2-test: Update to 2.0.
svn path=/nixpkgs/trunk/; revision=26059
2011-02-22 13:39:56 +00:00
Yury G. Kudryashov
0646cfee1e Move strigi outside of kde-4.x
svn path=/nixpkgs/trunk/; revision=26057
2011-02-22 11:54:49 +00:00
Yury G. Kudryashov
78127c3b86 Move qimageblitz outside of kde-4.x
svn path=/nixpkgs/trunk/; revision=26056
2011-02-22 11:54:42 +00:00
Eelco Dolstra
d47cf5a35e * Sync with the trunk.
svn path=/nixpkgs/branches/x-updates/; revision=26054
2011-02-22 10:00:18 +00:00
Yury G. Kudryashov
68299a0202 Move qca2 outside of kde-4.x
svn path=/nixpkgs/trunk/; revision=26053
2011-02-22 09:53:01 +00:00
Yury G. Kudryashov
dcc137553c newline
svn path=/nixpkgs/trunk/; revision=26049
2011-02-22 06:19:11 +00:00
Yury G. Kudryashov
3b3f50e405 Move automoc4 out of kde-4.x/
kde-4.x/ is for software that is released with kde releases,
not for anything hosted on *.kde.org or in kde svn/git.

svn path=/nixpkgs/trunk/; revision=26048
2011-02-22 06:19:05 +00:00
Eelco Dolstra
d89d26cdd2 * Added OpenStack Compute (Nova). It builds but doesn't work yet.
svn path=/nixpkgs/trunk/; revision=26047
2011-02-21 21:53:42 +00:00
Eelco Dolstra
0dd10c6035 * Add python-eventlet.
svn path=/nixpkgs/trunk/; revision=26046
2011-02-21 21:49:20 +00:00
Eelco Dolstra
237a852e85 * Added python-greenlet and python-httplib2.
svn path=/nixpkgs/trunk/; revision=26045
2011-02-21 17:26:19 +00:00
Eelco Dolstra
f053b6eec1 * Added python-netaddr.
svn path=/nixpkgs/trunk/; revision=26044
2011-02-21 17:09:09 +00:00
Eelco Dolstra
c4bc14bdd0 * Added python-gflags.
svn path=/nixpkgs/trunk/; revision=26043
2011-02-21 16:56:49 +00:00
Eelco Dolstra
33b5637b37 * Added radvd, the Router Advertisement Daemon.
svn path=/nixpkgs/trunk/; revision=26032
2011-02-19 16:04:34 +00:00
Michael Raskin
1ff642f723 Adding SMBNetFS
svn path=/nixpkgs/trunk/; revision=26030
2011-02-19 09:56:35 +00:00
Eelco Dolstra
d6c6f9f0e0 * Sync with the trunk.
svn path=/nixpkgs/branches/x-updates/; revision=26018
2011-02-17 16:33:39 +00:00
Michael Raskin
6029a74a29 LilyPond is not ready for Guile 2.0
svn path=/nixpkgs/trunk/; revision=26006
2011-02-17 08:23:56 +00:00
Ludovic Courtès
742b97a35b guile-2-test: Add LiquidWar and Freetalk.
svn path=/nixpkgs/trunk/; revision=26001
2011-02-16 22:50:02 +00:00
Michael Raskin
c0b92d0491 FreeTalk is not ready for Guile 2.0
svn path=/nixpkgs/trunk/; revision=25999
2011-02-16 22:21:29 +00:00
Michael Raskin
820e9d1b06 LiquidWar is not ready for Guile 2.0
svn path=/nixpkgs/trunk/; revision=25998
2011-02-16 22:21:07 +00:00
Michael Raskin
479fc3a1d4 Adding warmux
svn path=/nixpkgs/trunk/; revision=25997
2011-02-16 22:19:59 +00:00
Eelco Dolstra
9b6dfe840a * Sync with the trunk.
svn path=/nixpkgs/branches/x-updates/; revision=25993
2011-02-16 15:14:04 +00:00
Ludovic Courtès
59904446e4 GNU Guile 2.0.0!
svn path=/nixpkgs/trunk/; revision=25990
2011-02-16 13:18:08 +00:00
Karn Kallio
db25406910 Advance racket to latest release version 5.1
svn path=/nixpkgs/trunk/; revision=25984
2011-02-16 00:48:58 +00:00
Ludovic Courtès
8dba6683ad Fix typo.
svn path=/nixpkgs/trunk/; revision=25979
2011-02-15 13:23:34 +00:00
Ludovic Courtès
46d18d183d "coreutils_real" -> "coreutils".
svn path=/nixpkgs/trunk/; revision=25978
2011-02-15 13:15:55 +00:00
Ludovic Courtès
10f6eb70f1 Add more cross-MinGW and cross-GNU jobs.
svn path=/nixpkgs/trunk/; revision=25977
2011-02-15 13:14:33 +00:00
Ludovic Courtès
9bc101679a Prepare for the Guile 2.0 switchover.
svn path=/nixpkgs/trunk/; revision=25976
2011-02-15 13:14:29 +00:00
Andres Löh
0a69fe9898 Restored HaXml-1.13.3 to keep happstack and gitit working.
svn path=/nixpkgs/trunk/; revision=25974
2011-02-15 10:36:52 +00:00
Cillian de Roiste
19a516c68d Reverting the pulseSupport configuration option, I believe this is meant to be configured via packageOverrides instead
svn path=/nixpkgs/trunk/; revision=25941
2011-02-13 12:35:23 +00:00
Cillian de Roiste
9fd9a34316 Optionally enable pulseaudio support for MPlayer
svn path=/nixpkgs/trunk/; revision=25940
2011-02-13 11:37:29 +00:00
Yury G. Kudryashov
5e7c026c22 kde-x.y/utils is for kdeutils-x.y.z, not for apps from kde-apps.org
svn path=/nixpkgs/trunk/; revision=25932
2011-02-13 04:34:37 +00:00
Florian Friesdorf
f03892655b notmuch -- The mail indexer
configure fails so far:
Checking for Xapian development files... Yes (1.0.23).
Checking for GMime development files... No.
Checking for talloc development files... No.
Checking for valgrind development files... No (but that's fine).
Checking if emacs is available... Yes.

svn path=/nixpkgs/trunk/; revision=25930
2011-02-13 01:34:49 +00:00
David Guibert
87418d034b mkvtoolnix: 4.4.0
svn path=/nixpkgs/trunk/; revision=25925
2011-02-12 20:18:53 +00:00
David Guibert
188b3c00ba libmatroska: 1.0.0
svn path=/nixpkgs/trunk/; revision=25924
2011-02-12 20:18:46 +00:00
David Guibert
489b0e2fe5 libebml: 1.0.0
svn path=/nixpkgs/trunk/; revision=25923
2011-02-12 20:18:41 +00:00
Yury G. Kudryashov
dae53e0ea6 Make gdmap compile with newer gtk
svn path=/nixpkgs/branches/x-updates/; revision=25922
2011-02-12 20:16:08 +00:00
Cillian de Roiste
65e3a1b21c Adding pymacs, an Emacs Lisp to Python interface
svn path=/nixpkgs/trunk/; revision=25918
2011-02-12 13:38:23 +00:00
Cillian de Roiste
93a6c31a9a Avoiding easy_install in order to get rope and ropemacs working for now.
svn path=/nixpkgs/trunk/; revision=25917
2011-02-12 12:50:02 +00:00
Cillian de Roiste
dd0f90b302 Adding rope, a python refactoring library
svn path=/nixpkgs/trunk/; revision=25914
2011-02-11 23:06:54 +00:00
Cillian de Roiste
98bda5c728 Adding ropemacs, a plugin for refactoring python in emacs
svn path=/nixpkgs/trunk/; revision=25913
2011-02-11 22:49:27 +00:00
Eelco Dolstra
32f8ebfca3 * Emacs: disable the dependency on librsvg, because it pulls in over
26 additional dependencies (such as Samba, Upstart, HAL, udev,
  OpenLDAP, ...).  Also disable gconf because it doesn't really work
  and just prints annoying messages.

svn path=/nixpkgs/branches/x-updates/; revision=25911
2011-02-11 18:02:16 +00:00
Lluís Batlle i Rossell
cb41a67c47 Building mumble a bit further.
svn path=/nixpkgs/trunk/; revision=25908
2011-02-11 15:56:29 +00:00
Eelco Dolstra
2c72c03de5 * Mesa 7.9.1.
svn path=/nixpkgs/branches/x-updates/; revision=25905
2011-02-11 14:48:30 +00:00
Eelco Dolstra
e877e4dc13 * Dbus 1.4.1.
svn path=/nixpkgs/branches/x-updates/; revision=25903
2011-02-11 14:01:39 +00:00
Eelco Dolstra
a08d99715d * Sync with the trunk.
svn path=/nixpkgs/branches/x-updates/; revision=25900
2011-02-11 13:08:45 +00:00
Sander van der Burg
cd2df27b1c Bumped Disnix versions and added them to release.nix
svn path=/nixpkgs/trunk/; revision=25899
2011-02-11 12:53:23 +00:00