1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
Commit graph

7903 commits

Author SHA1 Message Date
Ludovic Courtès 08cc42f378 libgc: Add meta-info.
svn path=/nixpkgs/trunk/; revision=17187
2009-09-16 12:39:57 +00:00
Eelco Dolstra 2c0b739bca * XHTML 1.0 DTDs.
svn path=/nixpkgs/trunk/; revision=17185
2009-09-16 12:25:22 +00:00
Rob Vermaas 52b1b33028 * ddclient
svn path=/nixpkgs/trunk/; revision=17183
2009-09-16 11:53:09 +00:00
Eelco Dolstra d7d80e8fdc * Typos.
svn path=/nixpkgs/trunk/; revision=17182
2009-09-16 11:37:07 +00:00
Rob Vermaas 5d6ee123ed ddclient
svn path=/nixpkgs/trunk/; revision=17181
2009-09-16 11:27:18 +00:00
Rob Vermaas 94642f08a6 update webdsl
svn path=/nixpkgs/trunk/; revision=17178
2009-09-16 09:34:36 +00:00
Rob Vermaas 6ddd76f095 * added gnuvd, dutch dictionary application
svn path=/nixpkgs/trunk/; revision=17177
2009-09-16 08:36:05 +00:00
Rob Vermaas 8afb39344e * added uptimed 0.3.16
svn path=/nixpkgs/trunk/; revision=17172
2009-09-16 07:31:16 +00:00
Eelco Dolstra 63dceffb0b * Latest lm_sensors.
svn path=/nixpkgs/trunk/; revision=17170
2009-09-15 22:06:38 +00:00
Michael Raskin b217a6c57b Try enabling VESA framebuffer
svn path=/nixpkgs/trunk/; revision=17169
2009-09-15 19:21:02 +00:00
Eelco Dolstra 6d3edf1030 * Some Perl updates.
svn path=/nixpkgs/trunk/; revision=17164
2009-09-15 13:47:08 +00:00
Nicolas Pierron 0c16b00cbd Replace the traversal of modules:
- Remove handleOptionSets which used option declarations & definitions
in the same set.
- Add a traversal of modules where "config" and "options" are traverse at
the same time.

This allow to have accruate error messages with the incriminated files
playing a role in the error.

This system add a new restriction compare to the previous system:
- A module with no structure (option definitions & option declarations
& require) should not contain any option declarations.  If such module
exists you must convert it to the following form:

{ imports = <content of the require attribute>;
  options = <set of option declarations>;
  config = <set of option definitions>;
}

svn path=/nixpkgs/trunk/; revision=17163
2009-09-15 13:36:30 +00:00
Michael Raskin 07ed9e4611 Enable FB_CON_DECOR
svn path=/nixpkgs/trunk/; revision=17159
2009-09-15 12:29:15 +00:00
Michael Raskin 2a5e20ae3a Try enabling fbcondecor
svn path=/nixpkgs/trunk/; revision=17158
2009-09-15 11:37:18 +00:00
Rob Vermaas 0f02e39a6e added stratego 0.18 pre release
svn path=/nixpkgs/trunk/; revision=17157
2009-09-15 11:36:41 +00:00
Michael Raskin 0428a7405a Fix aufs utilities for NixOS manual
svn path=/nixpkgs/trunk/; revision=17153
2009-09-15 10:28:40 +00:00
Michael Raskin af269992e1 Update feature set for Zen kernel; also tune HZ settings for BFS scheduler (didn't boot for me last time)
svn path=/nixpkgs/trunk/; revision=17151
2009-09-15 09:16:29 +00:00
Michael Raskin 9ff982e4ab Require AUFS2 support in kernel
svn path=/nixpkgs/trunk/; revision=17150
2009-09-15 08:55:41 +00:00
Michael Raskin a0fbdffaba fix typo
svn path=/nixpkgs/trunk/; revision=17149
2009-09-15 08:45:10 +00:00
Michael Raskin 9ebb44e92e AUFS2 utilities
svn path=/nixpkgs/trunk/; revision=17147
2009-09-15 07:58:44 +00:00
Michael Raskin 5c2fbcacd1 Update Nginx because of a vulnerability
svn path=/nixpkgs/trunk/; revision=17146
2009-09-15 07:05:32 +00:00
Nicolas Pierron 37ce2ca949 Handles cases where developers ""cannot"" put their initial modules in
other files.

Imports of imported attribute set are not working anymore because this
feature is hard to maintain and because this a potential source of error.

Imports are only accepted inside named modules where the system has some
control over mutual inclusion.

svn path=/nixpkgs/trunk/; revision=17144
2009-09-15 00:21:39 +00:00
Michael Raskin a593492d4f Add a version of Zen kernel with Con Kolivas' BFS scheduler
svn path=/nixpkgs/trunk/; revision=17142
2009-09-14 21:56:31 +00:00
Michael Raskin b98b622ef0 Fix NixOS evaluation. As I understand, configuration gets added to the list of modules as an attrSet (not as a file name). Just add a trivial check to passthrough such modules.
svn path=/nixpkgs/trunk/; revision=17116
2009-09-14 20:10:41 +00:00
Lluís Batlle i Rossell da09a4e950 Adding kermit.
svn path=/nixpkgs/trunk/; revision=17114
2009-09-14 18:50:17 +00:00
Michael Raskin b1dd203499 Give up on aufs2 for now
svn path=/nixpkgs/trunk/; revision=17112
2009-09-14 14:23:22 +00:00
Eelco Dolstra 23ece2e968 * Fix for building Perl 5.8 on newer kernel headers. We still need
Perl 5.8 for old GHCs.

svn path=/nixpkgs/trunk/; revision=17111
2009-09-14 13:31:26 +00:00
Michael Raskin 5ea58c412e Fix more problems with aufs2
svn path=/nixpkgs/trunk/; revision=17110
2009-09-14 13:30:33 +00:00
Nicolas Pierron 1557cfd0c6 split moduleClosure in two parts:
* unifyModuleSyntax: handle all kind of module syntax to convert them into
  a module which has the following form:

  {
    imports = [ <paths> ];
    options = <attribute set of options declarations>;
    config = <attribute set (with properties) of option definitions>;
  }

  This function assume that there is at most one imported attribute set which
  correspond to option declarations.

* moduleClosure: handle a list of module's paths which are converted with
  the previous function to do the closure of the imports with the function
  lazyGenericClosure (which does the same as builtins.genericClosure except
  that it doesn't evaluate the content of modules).  The "key" and "paths"
  attributes are left to be used as debug information in futur
  implementation(s).

svn path=/nixpkgs/trunk/; revision=17108
2009-09-14 13:19:00 +00:00
Andres Löh 5b20a89f11 Version bumps for a number of Haskell packages.
svn path=/nixpkgs/trunk/; revision=17107
2009-09-14 08:35:39 +00:00
Michael Raskin f4162c9716 Turn off more debug options not needed by default
svn path=/nixpkgs/trunk/; revision=17103
2009-09-13 20:22:37 +00:00
Michael Raskin a8fa3e9cc9 Removing more debugging options from default 2.6.31 config
svn path=/nixpkgs/trunk/; revision=17101
2009-09-13 20:10:19 +00:00
Michael Raskin 125600079d Updating XMoto (and adding some functionality to upstream tracking system)
svn path=/nixpkgs/trunk/; revision=17100
2009-09-13 18:31:33 +00:00
Eelco Dolstra 00343dac28 * Firefox 3.5.3.
svn path=/nixpkgs/trunk/; revision=17098
2009-09-13 18:17:44 +00:00
Eelco Dolstra 538fd39f44 * Thunderbird 2.0.0.23 doesn't compile, but 2.0.0.22 does.
svn path=/nixpkgs/trunk/; revision=17097
2009-09-13 18:07:10 +00:00
Eelco Dolstra 03c8eb97fb svn path=/nixpkgs/trunk/; revision=17096 2009-09-13 16:40:36 +00:00
Michael Raskin 5d3b1a1b07 Change some options most different from mainline to build a probably bootable kernel
svn path=/nixpkgs/trunk/; revision=17095
2009-09-13 16:37:17 +00:00
Michael Raskin 01063c854b Remove option stopping 2.6.31 from booting
svn path=/nixpkgs/trunk/; revision=17094
2009-09-13 16:24:44 +00:00
Eelco Dolstra 5d0b5d06e9 * qt-4 -> qt-4.4.
* kde-4.2 shouldn't depend on poppler built with qt 4.5.

svn path=/nixpkgs/trunk/; revision=17084
2009-09-13 11:04:54 +00:00
Eelco Dolstra a54fc7e7f7 svn path=/nixpkgs/trunk/; revision=17083 2009-09-13 10:54:47 +00:00
Eelco Dolstra b6a5b7267e svn path=/nixpkgs/trunk/; revision=17081 2009-09-13 10:45:16 +00:00
Eelco Dolstra eb6f32c9cb * Fix the aufs2 build (hopefully).
svn path=/nixpkgs/trunk/; revision=17080
2009-09-13 10:25:58 +00:00
Marc Weber c8ee5671cb commenting Eclipse - use the new eclipseRunner instead
svn path=/nixpkgs/trunk/; revision=17079
2009-09-13 08:54:55 +00:00
Marc Weber 8fabb58eee thinking rock update
svn path=/nixpkgs/trunk/; revision=17078
2009-09-13 08:54:50 +00:00
Marc Weber 5478df996a adding netsurf browser. No JavaScript yet
svn path=/nixpkgs/trunk/; revision=17077
2009-09-13 08:54:47 +00:00
Marc Weber dee4d93757 adding haru pdf lib
svn path=/nixpkgs/trunk/; revision=17076
2009-09-13 08:54:44 +00:00
Marc Weber 8b8b058662 adding libmng
svn path=/nixpkgs/trunk/; revision=17075
2009-09-13 08:54:41 +00:00
Ludovic Courtès 5d459c6465 GNU IceCat 3.5.3.
svn path=/nixpkgs/trunk/; revision=17073
2009-09-12 21:19:01 +00:00
Ludovic Courtès f9a44eb4aa Mailutils: Restrict to GNU platforms.
svn path=/nixpkgs/trunk/; revision=17072
2009-09-12 20:53:21 +00:00
Ludovic Courtès e94e1de693 Mailutils: Add home page.
svn path=/nixpkgs/trunk/; revision=17071
2009-09-12 19:54:08 +00:00
Ludovic Courtès a6ab726b0f Try to build Mailutils everywhere.
svn path=/nixpkgs/trunk/; revision=17070
2009-09-12 18:47:34 +00:00
Ludovic Courtès b7fa5f13c9 Add gnu' as an alias for linux'.
The rationale is that usually applications don't care about the kernel
but rather about the C library, tool chain, and standard utilities,
which are GNU, not Linux.

svn path=/nixpkgs/trunk/; revision=17069
2009-09-12 18:46:04 +00:00
Michael Raskin 0462878b22 Fixing a typo
svn path=/nixpkgs/trunk/; revision=17067
2009-09-12 07:33:55 +00:00
Michael Raskin b7d9689224 Building 2.6.31
svn path=/nixpkgs/trunk/; revision=17066
2009-09-12 07:13:58 +00:00
Michael Raskin a5023cf381 Adding 2.6.31 kernel and trying to generate config for it without manual operations
svn path=/nixpkgs/trunk/; revision=17065
2009-09-12 07:13:20 +00:00
Michael Raskin 11de02585a Trying to reconfigure kernel to boot
svn path=/nixpkgs/trunk/; revision=17064
2009-09-12 06:59:44 +00:00
Michael Raskin b3281f994f KQemu needs perl to build
svn path=/nixpkgs/trunk/; revision=17063
2009-09-12 06:11:21 +00:00
Michael Raskin 3557e1c843 Removing sqliteargument for tb2
svn path=/nixpkgs/trunk/; revision=17062
2009-09-12 05:53:25 +00:00
Michael Raskin 7c38144378 Temporarily (?) reverting Thunderbird update because updated version failed to build for ununderstandable reasons
svn path=/nixpkgs/trunk/; revision=17061
2009-09-12 05:36:07 +00:00
Michael Raskin 37cbc33a6e Try harder to forcefeed sqlite3 into the build process
svn path=/nixpkgs/trunk/; revision=17060
2009-09-11 20:10:55 +00:00
Michael Raskin a497fc4d6f Fix typo
svn path=/nixpkgs/trunk/; revision=17059
2009-09-11 19:34:03 +00:00
Michael Raskin fdf28e4074 Thunderbird seems to need SQLite3 in a half-explicit way
svn path=/nixpkgs/trunk/; revision=17058
2009-09-11 19:28:12 +00:00
Michael Raskin da94aa680b Fix typo
svn path=/nixpkgs/trunk/; revision=17057
2009-09-11 18:55:14 +00:00
Michael Raskin 03a9137114 Add matching kernelPackages for Zen Linux Kernel
svn path=/nixpkgs/trunk/; revision=17056
2009-09-11 15:55:52 +00:00
Sander van der Burg 9612c02ad7 Added marble support to kdeplasma-addons
svn path=/nixpkgs/trunk/; revision=17055
2009-09-11 14:46:39 +00:00
Sander van der Burg cdfc752210 Added XPlanet support to kdeedu-4.3.1, not that is an essential feature but it looks cool :-)
svn path=/nixpkgs/trunk/; revision=17054
2009-09-11 14:06:51 +00:00
Michael Raskin 7cc0f07690 Fix kernel configuration editing script snippets
svn path=/nixpkgs/trunk/; revision=17053
2009-09-11 13:59:32 +00:00
Michael Raskin e1faa9650d Remove non-existant gnuplotX
svn path=/nixpkgs/trunk/; revision=17052
2009-09-11 13:58:19 +00:00
Michael Raskin ec57ec6d6f Disable IMA because of conflict with aufs
svn path=/nixpkgs/trunk/; revision=17051
2009-09-11 13:50:40 +00:00
Michael Raskin 491255bbb3 Trying to add Zen Linux Kernel
svn path=/nixpkgs/trunk/; revision=17050
2009-09-11 13:16:18 +00:00
Sander van der Burg 3a5645269d Claimed maintainership of VICE package and added VICE to the releases.nix
svn path=/nixpkgs/trunk/; revision=17049
2009-09-11 13:16:00 +00:00
Sander van der Burg 687f931c12 Fixed path to the VirtualBox desktop file
svn path=/nixpkgs/trunk/; revision=17048
2009-09-11 12:43:35 +00:00
Sander van der Burg 40755c9412 Added Amarok 2.1.1
svn path=/nixpkgs/trunk/; revision=17047
2009-09-11 12:32:43 +00:00
Sander van der Burg 32e16ca9c6 Upgraded VirtualBox to 3.0.6
svn path=/nixpkgs/trunk/; revision=17046
2009-09-11 12:24:32 +00:00
Sander van der Burg 0ff1faaf1b - Added Qt script generator package (dependency for Amarok)
- Added taglib-extras package (dependency for Amarok)
- Upgraded Amarok to 2.1.1


svn path=/nixpkgs/trunk/; revision=17045
2009-09-11 12:05:23 +00:00
Ludovic Courtès 0d362f72ba Add GNU Mailutils 2.1.
svn path=/nixpkgs/trunk/; revision=17041
2009-09-11 09:38:25 +00:00
Sander van der Burg 1d3e827479 Added a few KDE 4.3 extragear packages
svn path=/nixpkgs/trunk/; revision=17040
2009-09-10 21:58:19 +00:00
Ludovic Courtès 77110de089 GSL 1.13.
svn path=/nixpkgs/trunk/; revision=17039
2009-09-10 21:23:46 +00:00
Sander van der Burg 2b0544f223 - Loudmouth uses OpenSSL now instead of GnuTLS, because I could not compile it with GnuTLS
- Upgraded KOffice to 2.0.2
- Upgraded KTorrent to 3.2.3
- Upgraded Amarok to 2.1.1


svn path=/nixpkgs/trunk/; revision=17038
2009-09-10 21:08:46 +00:00
Sander van der Burg f0bc865339 Upgraded kmplayer to 0.11.1b
svn path=/nixpkgs/trunk/; revision=17037
2009-09-10 20:39:43 +00:00
Sander van der Burg 98bad63d6c Upgraded kdesvn to 1.4.0
svn path=/nixpkgs/trunk/; revision=17036
2009-09-10 20:34:45 +00:00
Sander van der Burg aa2946a8c5 Claimed maintainership on the krusader package
svn path=/nixpkgs/trunk/; revision=17035
2009-09-10 20:27:23 +00:00
Sander van der Burg 117988bb01 Added KDE 4.3 packages
svn path=/nixpkgs/trunk/; revision=17034
2009-09-10 20:06:57 +00:00
Sander van der Burg 96ff884c3d - Added kdepim-runtime package
- Updated KDE plasma addons to 4.3.1


svn path=/nixpkgs/trunk/; revision=17033
2009-09-10 20:01:22 +00:00
Sander van der Burg b8efc63561 Updated KDE bindings, admin, utils to 4.3.1
svn path=/nixpkgs/trunk/; revision=17032
2009-09-10 19:14:48 +00:00
Sander van der Burg bb4a7c5299 Upgraded PyQt and dependencies to 4.5.4
svn path=/nixpkgs/trunk/; revision=17031
2009-09-10 17:00:30 +00:00
Marc Weber 09920037c0 adding mplayer trunk cause the stable source distribution is said to be
outdated

svn path=/nixpkgs/trunk/; revision=17030
2009-09-10 16:58:02 +00:00
Marc Weber b441632f92 timidity: fix instruments also adding jack and default alsa backend
svn path=/nixpkgs/trunk/; revision=17029
2009-09-10 16:57:58 +00:00
Marc Weber 3201717bdb adding lilypond
svn path=/nixpkgs/trunk/; revision=17028
2009-09-10 16:57:56 +00:00
Marc Weber 21b7f04330 adding halevt
svn path=/nixpkgs/trunk/; revision=17027
2009-09-10 16:57:53 +00:00
Marc Weber 5d39e92acc adding boolstuff
svn path=/nixpkgs/trunk/; revision=17026
2009-09-10 16:57:50 +00:00
Marc Weber 059b19e693 rxvt-unicode: add optional perl support (I'm keen on tabs and the search feature)
svn path=/nixpkgs/trunk/; revision=17025
2009-09-10 16:57:47 +00:00
Marc Weber 7c02d7eb0b fix opera on x86_64
svn path=/nixpkgs/trunk/; revision=17024
2009-09-10 16:57:45 +00:00
Marc Weber 2f91d73018 adding texitohtml (dependency of lilypond)
svn path=/nixpkgs/trunk/; revision=17023
2009-09-10 16:57:42 +00:00
Marc Weber 4800303718 nixUnstable: allow passing patches
svn path=/nixpkgs/trunk/; revision=17022
2009-09-10 16:57:37 +00:00
Marc Weber dab5d6463f Adding partition manager. It builds. But it waits forever on some devices?
So maybe just use gparted..

svn path=/nixpkgs/trunk/; revision=17021
2009-09-10 16:57:34 +00:00
Marc Weber 74c5a4d9d9 adding jigdo-lite
svn path=/nixpkgs/trunk/; revision=17020
2009-09-10 16:57:31 +00:00
Marc Weber d3cb19bd41 added note that steps in builderDefs should be rewritten using '' syntax
in order to strip spaces

svn path=/nixpkgs/trunk/; revision=17019
2009-09-10 16:57:29 +00:00
Marc Weber 60aa746f6b removing dropPath. It's used once and in that case it behaves like
builtins.dropPath

svn path=/nixpkgs/trunk/; revision=17018
2009-09-10 16:57:26 +00:00
Marc Weber 50ccc55d62 removing qtparted. It didn't compile. No updates since 2005
svn path=/nixpkgs/trunk/; revision=17017
2009-09-10 16:57:24 +00:00
Marc Weber 7a9b9e74a5 adding gparted. qparted is no longer maintained (?)
svn path=/nixpkgs/trunk/; revision=17016
2009-09-10 16:57:21 +00:00
Marc Weber f55148cf88 fix avrlibcgcc
svn path=/nixpkgs/trunk/; revision=17015
2009-09-10 16:57:06 +00:00
Sander van der Burg 82ce10a720 Upgraded KDE network, pim to 4.3.1
svn path=/nixpkgs/trunk/; revision=17014
2009-09-10 16:11:29 +00:00
Sander van der Burg 33d7ae6288 Upgraded KDE EDU to 4.3.1
svn path=/nixpkgs/trunk/; revision=17011
2009-09-10 14:58:08 +00:00
Sander van der Burg 48497bd320 Upgraded KDE SDK, Multimedia, Webdev to 4.3.1
svn path=/nixpkgs/trunk/; revision=17009
2009-09-10 13:57:37 +00:00
Sander van der Burg 4e39d699c4 Updated KDE toys to 4.3.1
svn path=/nixpkgs/trunk/; revision=17007
2009-09-10 13:13:48 +00:00
Sander van der Burg 51e0549398 - Added oxygen icons, which are mandatory for KDE 4.3
- Updated DJVU libre to 3.5.22
- Updated KDE graphics, artwork, games to 4.3.1
- Poppler Qt4 backend now uses QT-4.5.x


svn path=/nixpkgs/trunk/; revision=17006
2009-09-10 13:04:14 +00:00
Eelco Dolstra 580096378b * Fixed the Wacom package (version 0.8.4 has disappeared).
svn path=/nixpkgs/trunk/; revision=17003
2009-09-10 12:21:25 +00:00
Eelco Dolstra 5b7f46ea43 * A utility function `optionalAttrs', similar to optional and
optionalString but for attribute sets.

svn path=/nixpkgs/trunk/; revision=17002
2009-09-10 10:52:51 +00:00
Eelco Dolstra 9d15693163 * Make sure that the X server can write the compiled xkb keymap. This
requires $out/share/X11/xkb/compiled to be writable, so symlink it
  to /var/tmp.  Using --with-xkb-output doesn't work in a chroot build
  because `make install' tries to write a README.compiled file to
  /var/tmp, which doesn't exist in the chroot.

svn path=/nixpkgs/trunk/; revision=17000
2009-09-09 22:16:09 +00:00
Andres Löh cb3722a72a Version bump for uu-parsinglib.
svn path=/nixpkgs/trunk/; revision=16997
2009-09-09 15:49:52 +00:00
Andres Löh dbfe44e6eb Added parseargs.
svn path=/nixpkgs/trunk/; revision=16996
2009-09-09 15:45:27 +00:00
Eelco Dolstra daceb23a25 * qemu-kvm 0.11.0rc2.
svn path=/nixpkgs/trunk/; revision=16995
2009-09-09 15:44:14 +00:00
Peter Simons bba3090136 Updated git to version 1.6.4.2.
svn path=/nixpkgs/trunk/; revision=16994
2009-09-09 11:26:53 +00:00
Sander van der Burg 16beaadb96 Implemented base packages for KDE 4.3.1
svn path=/nixpkgs/trunk/; revision=16993
2009-09-09 10:53:32 +00:00
Peter Simons c5179a098c Updated Gnuplot to version 4.2.5.
* Merged 'gnuplot' and 'gnuplotX' attributes into one that uses (getPkgConfig
   "gnuplot" "x11" false) to determine whether X11 support is desired or not.

 * Added Emacs as a build-time dependency to ensure that Gnuplot's lisp code is
   installed, too.

 * Added optional support for the wxt terminal by means of (getPkgConfig
   "gnuplot" "wxGtk" false).

 * Removed the '-nix' suffix to the package name. The Gnuplot license requires
   a vendor-specific version suffix only in case of modified binary
   distributions. That is not the case here.

svn path=/nixpkgs/trunk/; revision=16992
2009-09-09 09:36:03 +00:00
Eelco Dolstra 1511a6f28c * Thunderbird 2.0.0.23.
svn path=/nixpkgs/trunk/; revision=16991
2009-09-09 09:32:42 +00:00
Sander van der Burg f931c1ccfe Claimed maintainership of the qt-4.5 package
svn path=/nixpkgs/trunk/; revision=16990
2009-09-08 21:25:08 +00:00
Sander van der Burg 7fa38ea9fa Added XZ package
svn path=/nixpkgs/trunk/; revision=16989
2009-09-08 20:03:37 +00:00
Sander van der Burg 379a499dca Updated all KDE support packages required for KDE 4.3
svn path=/nixpkgs/trunk/; revision=16988
2009-09-08 14:38:27 +00:00
Sander van der Burg c2a8340195 Updated Clucene core to 0.9.21b
svn path=/nixpkgs/trunk/; revision=16987
2009-09-08 13:38:47 +00:00
Ludovic Courtès e5eb79cee4 lsh: Fix typo.
svn path=/nixpkgs/trunk/; revision=16986
2009-09-08 10:31:07 +00:00
Ludovic Courtès 80e34c69f5 lsh: Use GNU URL; handle --no-root-login' in lshd'.
svn path=/nixpkgs/trunk/; revision=16985
2009-09-08 10:29:22 +00:00
Sander van der Burg b44d46ee21 Removed my dirty hacks, because I discovered a undocumented feature in the QT configure script which picks the opensource edition
svn path=/nixpkgs/trunk/; revision=16984
2009-09-08 09:50:06 +00:00
Michael Raskin edd56d707a Update source updater to support fetchgit; add aufs2 using that method. Unfortunately, AUFS2 seems to require some strict conditions on kernel options and version..
svn path=/nixpkgs/trunk/; revision=16983
2009-09-08 09:35:21 +00:00
Sander van der Burg 9121ae7fb8 Changed to let KDE 4.3 use qt-4.5.x
svn path=/nixpkgs/trunk/; revision=16982
2009-09-08 09:23:45 +00:00
Ludovic Courtès d185972f22 Add GNU Accounting Utilities.
svn path=/nixpkgs/trunk/; revision=16981
2009-09-08 08:29:40 +00:00
Ludovic Courtès 26bd10a892 lsh: Help `lsh-make-seed' gather more entropy.
svn path=/nixpkgs/trunk/; revision=16978
2009-09-07 13:45:06 +00:00
Rob Vermaas e4b91c91c7 typo
svn path=/nixpkgs/trunk/; revision=16973
2009-09-07 10:07:03 +00:00
Eelco Dolstra 934d30e35f * Fix a broken URL, and update sudo while we're at it.
svn path=/nixpkgs/trunk/; revision=16972
2009-09-06 21:36:51 +00:00
Rob Vermaas c0e46e52ba * added postgresql 8.4.0
svn path=/nixpkgs/trunk/; revision=16956
2009-09-04 12:55:03 +00:00
Eelco Dolstra edae4e83b0 * Urgh, forgot to commit.
svn path=/nixpkgs/trunk/; revision=16948
2009-09-02 23:10:30 +00:00
Eelco Dolstra bf3c2912ab svn path=/nixpkgs/trunk/; revision=16947 2009-09-02 23:04:57 +00:00
Eelco Dolstra 5de6c065d3 * Added scrot, a command-line screen capture utility.
svn path=/nixpkgs/trunk/; revision=16946
2009-09-02 22:56:33 +00:00
Eelco Dolstra 99cd5a1679 * ImageMagick updated to 6.5.5-6.
svn path=/nixpkgs/trunk/; revision=16945
2009-09-02 22:43:08 +00:00
Eelco Dolstra 28af8ad308 * Fix the build of gnome-utils.
svn path=/nixpkgs/trunk/; revision=16944
2009-09-02 22:42:52 +00:00
Eelco Dolstra ced7a48e5d * glx: make the XORG_DRI_DRIVER_PATH environment variable work for the
software renderer as well.

svn path=/nixpkgs/trunk/; revision=16943
2009-09-02 22:32:56 +00:00
Eelco Dolstra e4428949fe * Build Audacious with XSPF (playlist) support.
svn path=/nixpkgs/trunk/; revision=16935
2009-09-02 16:54:08 +00:00
Eelco Dolstra 76f1d68360 svn path=/nixpkgs/trunk/; revision=16933 2009-09-02 13:31:33 +00:00
Eelco Dolstra c26262e72e * Some cleanup of the Opera expression. It doesn't need the libstdcpp
from GCC 3.3 anymore, GCC 4.x is fine.  So we can use the regular Qt
  3 build.  Also, there don't seem to be any references to Motif
  anymore.

svn path=/nixpkgs/trunk/; revision=16932
2009-09-02 13:24:08 +00:00
Eelco Dolstra f560f49faa * Fix nix-env evaluation.
svn path=/nixpkgs/trunk/; revision=16931
2009-09-02 13:22:34 +00:00
Rob Vermaas 63c175dc46 * opera 10
svn path=/nixpkgs/trunk/; revision=16930
2009-09-02 12:23:01 +00:00
Sander van der Burg c9254649c0 Added Disnix activation scripts package
svn path=/nixpkgs/trunk/; revision=16928
2009-09-02 10:03:45 +00:00
Sander van der Burg d573d5f621 Upgraded disnix package to SVN revision 16924
svn path=/nixpkgs/trunk/; revision=16927
2009-09-02 09:47:47 +00:00
Eelco Dolstra 4c89d4f833 * Clean up the coverage report in the case where absolute paths are
used in the *.gcno files.

svn path=/nixpkgs/trunk/; revision=16925
2009-09-02 09:37:52 +00:00
Eelco Dolstra f782f14e58 * Factor out an adapter to clean up the build tree.
svn path=/nixpkgs/trunk/; revision=16920
2009-09-02 06:31:13 +00:00
Michael Raskin 3d7152db82 Fix /sbin/ reference. On Linux just replace it with an "ip link" reference
svn path=/nixpkgs/trunk/; revision=16918
2009-09-01 22:42:05 +00:00
Eelco Dolstra 58e6161768 * addCoverageInstrumentation: factor out the code that keeps the build
tree under $out into a separate stdenv adapter named keepBuildTree.
* makeModulesClosure: support building an initrd for a kernel that has
  been compiled with coverage instrumentation.

svn path=/nixpkgs/trunk/; revision=16916
2009-09-01 21:56:46 +00:00
Michael Raskin 043fe38f80 Enable some features in gvpe
svn path=/nixpkgs/trunk/; revision=16915
2009-09-01 21:00:34 +00:00
Michael Raskin ef6a270501 Adding GVPE - a protected virtual multinode ethernet
svn path=/nixpkgs/trunk/; revision=16913
2009-09-01 20:12:01 +00:00
Ludovic Courtès b6a12ac090 GraphViz for AutoDia.
svn path=/nixpkgs/trunk/; revision=16912
2009-09-01 14:48:47 +00:00
Ludovic Courtès 62dc1d45f5 Add Inline' and Inline::Java'; fix Autodia.
svn path=/nixpkgs/trunk/; revision=16911
2009-09-01 14:36:10 +00:00
Rob Vermaas f016a6bcbc * stratego-mode for emacs
svn path=/nixpkgs/trunk/; revision=16910
2009-09-01 14:27:24 +00:00
Ludovic Courtès 0dc8e1418e Add Autodia.
svn path=/nixpkgs/trunk/; revision=16909
2009-09-01 13:59:37 +00:00
Michael Raskin 42027eee24 Reverting the hack
svn path=/nixpkgs/trunk/; revision=16907
2009-09-01 07:56:35 +00:00
Michael Raskin bdcdfbadea Temporary hack to check whether Hydra actually uses fresh Nix.
svn path=/nixpkgs/trunk/; revision=16906
2009-09-01 07:51:29 +00:00
Eelco Dolstra 61acec5361 * Use makeOverridable for a few packages used in the Subversion
coverage test, and inherit from pkgsOverriden.  This is really
  ugly.  Should think hard about how to do this in a cleaner way.

svn path=/nixpkgs/trunk/; revision=16904
2009-08-31 15:03:31 +00:00
Eelco Dolstra 086dd25510 * Use --coverage, which is identical to -fprofile-arcs -ftest-coverage.
svn path=/nixpkgs/trunk/; revision=16903
2009-08-31 15:02:27 +00:00
Eelco Dolstra 54a5ad0c6f * Hacked up a patch to let lcov find source files referenced by a
path relative to some arbitrary parent of the .gcno file.  For
  instance, this happens when building Subversion with coverage.

svn path=/nixpkgs/trunk/; revision=16902
2009-08-31 15:02:01 +00:00
Michael Raskin 11e09ffad1 Adding GlusterFS - a distributed storage system
svn path=/nixpkgs/trunk/; revision=16896
2009-08-31 09:52:01 +00:00
Sander van der Burg dd25b49bfa Added setuptools as propagated buildInput for Trac
svn path=/nixpkgs/trunk/; revision=16893
2009-08-30 17:28:26 +00:00
Sander van der Burg f51dd41ff1 Implemented Trac python package and dependencies
svn path=/nixpkgs/trunk/; revision=16892
2009-08-30 13:43:35 +00:00
Eelco Dolstra 0fd5ed507e * A stdenv adapter to build a package with coverage instrumentation.
svn path=/nixpkgs/trunk/; revision=16890
2009-08-28 16:45:56 +00:00
Eelco Dolstra df5cd8776a * Apache 2.2.13.
svn path=/nixpkgs/trunk/; revision=16889
2009-08-28 16:05:48 +00:00
Eelco Dolstra 024c82ee04 * lcov 1.7.
svn path=/nixpkgs/trunk/; revision=16888
2009-08-28 14:11:09 +00:00
Michael Raskin 3a993e2f8e Fixing typos
svn path=/nixpkgs/trunk/; revision=16887
2009-08-28 07:07:55 +00:00
Michael Raskin 8bdc1503c1 Put the meta-based choice in suspended state to be used automatically when tryEval is available
svn path=/nixpkgs/trunk/; revision=16886
2009-08-28 07:00:40 +00:00
Michael Raskin 3e89d56999 Trying meta-based selection again
svn path=/nixpkgs/trunk/; revision=16885
2009-08-28 06:57:08 +00:00
Michael Raskin d0443c07fc Temporarily removing by-meta build and updating Nix..
svn path=/nixpkgs/trunk/; revision=16884
2009-08-28 06:37:05 +00:00
Michael Raskin d109e4cd95 Trying to reinstate the meta-based Hydra builds
svn path=/nixpkgs/trunk/; revision=16883
2009-08-28 06:29:21 +00:00
Marc Weber 08d98a9972 Revert "mod-python unfinished"
reverting -r 16808 (unfinished mod_python). Sth working does already exist

svn path=/nixpkgs/trunk/; revision=16882
2009-08-27 23:46:15 +00:00
Marc Weber 8ff2647169 adding gutenprint (former gimp-print) and gutenprintBin. I still haven't
found the source of the binary package containing the .ppd files
Still impure but works. See comment.

svn path=/nixpkgs/trunk/; revision=16881
2009-08-27 23:32:13 +00:00
Marc Weber bc8a85288d cups-bjnp driver
svn path=/nixpkgs/trunk/; revision=16880
2009-08-27 23:32:10 +00:00
Michael Raskin a1ea759dd9 Adding libev - an even loop library remotely similar to libevent
svn path=/nixpkgs/trunk/; revision=16877
2009-08-27 07:17:57 +00:00
Andres Löh 39b651fb44 Added scion.
svn path=/nixpkgs/trunk/; revision=16876
2009-08-27 07:01:48 +00:00
Andres Löh 543483d99f Added mkcabal.
svn path=/nixpkgs/trunk/; revision=16875
2009-08-27 06:35:17 +00:00
Eelco Dolstra d22e36efe0 * Grrrr... I should go home.
svn path=/nixpkgs/trunk/; revision=16874
2009-08-26 17:36:41 +00:00
Eelco Dolstra 978b1ce09d * Oop.s
svn path=/nixpkgs/trunk/; revision=16873
2009-08-26 17:32:41 +00:00
Eelco Dolstra 179c8c9ae6 * Disable for now.
svn path=/nixpkgs/trunk/; revision=16872
2009-08-26 17:23:23 +00:00
Eelco Dolstra 54207c7ce2 * Get rid of more old Compiz versions.
svn path=/nixpkgs/trunk/; revision=16871
2009-08-26 17:17:01 +00:00
Eelco Dolstra ca13d6918e * As predicted, returning {} if a package isn't supported on a
platform won't work: nix-env -qa barfs with "error: cannot coerce an
  attribute set (except a derivation) to a string".  So throw an error
  instead.  Anyway, condPackage/platformPackage doesn't belong in
  all-packages.nix (it should be specified in the package itself).

svn path=/nixpkgs/trunk/; revision=16870
2009-08-26 17:14:08 +00:00
Eelco Dolstra 5977d741b8 svn path=/nixpkgs/trunk/; revision=16869 2009-08-26 17:09:02 +00:00
Eelco Dolstra 9358ffa39c * Get rid of some old Compiz versions.
svn path=/nixpkgs/trunk/; revision=16868
2009-08-26 17:04:15 +00:00
Michael Raskin f16657b14f Adding monit monitoring tool; in the course of action creating a script to auto-prepare basic autoupdate layout
svn path=/nixpkgs/trunk/; revision=16863
2009-08-26 16:22:20 +00:00
Eelco Dolstra 921de5b511 * Remove the warning, it's rather annoying.
svn path=/nixpkgs/trunk/; revision=16862
2009-08-26 14:13:05 +00:00
Eelco Dolstra 24487fa73e * Allow the Nixpkgs config to be passed as a function argument (rather
than through ~/.nixpkgs/config.nix or $NIXPKGS_CONFIG).

svn path=/nixpkgs/trunk/; revision=16861
2009-08-26 13:51:37 +00:00
Michael Raskin 781a112230 Remove broken platforms
svn path=/nixpkgs/trunk/; revision=16860
2009-08-26 12:05:28 +00:00
Michael Raskin fbea8a558a Adding WebDruid log analyzer. In the same time, reworking source autoupdate system a bit
svn path=/nixpkgs/trunk/; revision=16859
2009-08-26 11:13:36 +00:00
Eelco Dolstra e8931adcf3 * Latest NVIDIA driver. This one isn't broken on laptops.
svn path=/nixpkgs/trunk/; revision=16858
2009-08-26 09:01:05 +00:00
Michael Raskin 9e58814536 Changing CLisp, FPC to new style of adding to hydra
svn path=/nixpkgs/trunk/; revision=16855
2009-08-25 09:00:19 +00:00
Michael Raskin 9e928bb1e9 Adding eProver to buildfarm via maintanership
svn path=/nixpkgs/trunk/; revision=16854
2009-08-25 08:28:08 +00:00
Michael Raskin e6b1990f24 The trick to increase reliability does not work
svn path=/nixpkgs/trunk/; revision=16853
2009-08-25 06:53:43 +00:00
Michael Raskin 426c46cd97 Forgot to mark Google Earth
svn path=/nixpkgs/trunk/; revision=16852
2009-08-25 06:45:31 +00:00
Michael Raskin 88ae620570 Fix syntax error after the marking up
svn path=/nixpkgs/trunk/; revision=16851
2009-08-25 06:40:26 +00:00
Michael Raskin 8baf01155b Attempt to mark up packages with platform assertions
svn path=/nixpkgs/trunk/; revision=16850
2009-08-25 06:36:05 +00:00
Michael Raskin 62cd2b2247 Folding@Home also has platform assertions.
svn path=/nixpkgs/trunk/; revision=16849
2009-08-25 06:18:29 +00:00
Michael Raskin 031c6275fd Flash player also has assertions..
svn path=/nixpkgs/trunk/; revision=16848
2009-08-25 06:11:22 +00:00
Michael Raskin 0c294c4827 My way of testing packages was wrong..
svn path=/nixpkgs/trunk/; revision=16847
2009-08-25 06:07:42 +00:00
Michael Raskin 3b5b31afed Hopefully that should a) work b) not break things when it does not work
svn path=/nixpkgs/trunk/; revision=16846
2009-08-25 06:04:13 +00:00
Michael Raskin 585e52c406 Temporarily roll back the change until I check evaluation in more cases
svn path=/nixpkgs/trunk/; revision=16845
2009-08-25 05:50:42 +00:00