Commit graph

4404 commits

Author SHA1 Message Date
Yury G. Kudryashov dea41a12ea Add rsibreak
svn path=/nixpkgs/trunk/; revision=22897
2010-08-02 17:19:44 +00:00
Yury G. Kudryashov 695b150844 Add polkit-qt-1, strigi, kdelibs-4.4.92
svn path=/nixpkgs/trunk/; revision=22890
2010-08-02 17:12:39 +00:00
Yury G. Kudryashov 915edddc5b Add parts of kdesupport for kde-4.5
svn path=/nixpkgs/trunk/; revision=22889
2010-08-02 17:11:19 +00:00
Eelco Dolstra d17f0f9cbc * Use callPackage for most packages in all-packages.nix.
`callPackage' was described here:

    http://www.mail-archive.com/nix-dev@cs.uu.nl/msg02624.html

  It allows all-packages.nix to be shortened significantly (from 10152
  to 6980 lines) by automatically filling in package functions'
  required arguments from `pkgs'.  That is, a function

    { stdenv, fetchurl, libfoo, libbar }: ...

  can now be called as

    callPackage ./<bla>.nix { };

  rather than

    import ./<bla>.nix {
      inherit stdenv fetchurl libfoo libbar;
    };

  This reduces boring typing work when adding a dependency and reduces
  the number of trivial commits to all-packages.nix.

  Overrides or arguments that don't exist in `pkgs' can be passed
  explicitly, e.g.,

    callPackage ./<bla>.nix {
      libfoo = libfoo_1_2_3;
    };

  The conversion was done automatically with a magic Perl regexp.  I
  checked that `nix-env' produces the same results before and after
  (except for three packages that depend on webkit, which uses
  deepOverride).

  `callPackage' applies `makeOverridable' automatically, so almost
  every package now exports an `override' function.

  There are two downsides to using callPackage:

  - Evaluation is a bit slower (about 15% on `nix-env -qa --drv-path
    \*').

  - There can be unexpected results for functions that have default
    argument values.  For instance, a function

      { libfoo ? null }: ...

    called using `callPackage' will be passed a `libfoo' argument
    provided that `pkgs.libfoo' exists.  If this is used to control
    whether a package has to have a certain dependency, you need to
    explicitly write:

    callPackage ./<bla>.nix {
      libfoo = null;
    };

svn path=/nixpkgs/trunk/; revision=22885
2010-08-02 16:26:58 +00:00
Eelco Dolstra cc84ac9e84 svn path=/nixpkgs/trunk/; revision=22880 2010-08-02 16:01:55 +00:00
Eelco Dolstra fd268b4852 * Add callPackage etc.
svn path=/nixpkgs/trunk/; revision=22876
2010-08-02 13:57:57 +00:00
Rob Vermaas 70c6ab18a3 added qrupdate, suitesparse needed to build octave from source
svn path=/nixpkgs/trunk/; revision=22867
2010-08-02 11:20:39 +00:00
Rob Vermaas fb6ca79d35 HDF5 1.8.5
svn path=/nixpkgs/trunk/; revision=22861
2010-08-02 08:58:53 +00:00
Eelco Dolstra 283005d568 * GemRB updated to 0.6.1.
svn path=/nixpkgs/trunk/; revision=22837
2010-08-01 14:24:46 +00:00
Yury G. Kudryashov 3cae107cca Fix nixpkgs evaluation
I've removed rekonqScm but forgotten to remove it from all-packages

svn path=/nixpkgs/trunk/; revision=22836
2010-07-31 18:47:15 +00:00
Yury G. Kudryashov 45fd5a9836 Upgrade rekonq
svn path=/nixpkgs/trunk/; revision=22835
2010-07-31 13:06:10 +00:00
Yury G. Kudryashov 288c414bb4 pulseaudio: udev and bluez support
svn path=/nixpkgs/trunk/; revision=22834
2010-07-31 13:05:58 +00:00
Yury G. Kudryashov 65f0b956a2 Add libsndfile and fftw support to libsamplerate
svn path=/nixpkgs/trunk/; revision=22831
2010-07-30 20:17:37 +00:00
Yury G. Kudryashov 2835a98378 Add qt-4.7.0-beta2
svn path=/nixpkgs/trunk/; revision=22830
2010-07-30 19:45:07 +00:00
Eelco Dolstra 4bf5b0d36b * Fix some more "args: with args".
svn path=/nixpkgs/trunk/; revision=22828
2010-07-30 14:47:23 +00:00
Eelco Dolstra ef0ff49ad4 svn path=/nixpkgs/trunk/; revision=22826 2010-07-30 13:05:52 +00:00
Eelco Dolstra 9375dad95a * Remove findutils-wrapper (obsolete).
* Remove some unnecessary / inappropriate lowPrios.

svn path=/nixpkgs/trunk/; revision=22825
2010-07-30 12:31:10 +00:00
Eelco Dolstra 35b4ccadba svn path=/nixpkgs/trunk/; revision=22824 2010-07-30 12:24:19 +00:00
Eelco Dolstra ee4fe6ea84 * Drop pkgsOverriden.
svn path=/nixpkgs/trunk/; revision=22823
2010-07-30 12:10:24 +00:00
Eelco Dolstra 3386a0e63d svn path=/nixpkgs/trunk/; revision=22822 2010-07-30 10:48:13 +00:00
Eelco Dolstra acd34843f0 * Move "checker" to lib. It seems to be unused though.
svn path=/nixpkgs/trunk/; revision=22819
2010-07-30 09:24:55 +00:00
Lluís Batlle i Rossell b044e64989 Making the xburst-tools for the Ben Nanonote build the firmware they need to
communicate with it. This involves making a cross-compiler for mipsel.

svn path=/nixpkgs/trunk/; revision=22818
2010-07-29 23:26:07 +00:00
Lluís Batlle i Rossell 537ad15e86 Adding xburst-tools to manage the USB_BOOT mode of the Ben Nanonote (reflashing, ...)
I add the 'confuse' library as a side effect.

svn path=/nixpkgs/trunk/; revision=22817
2010-07-29 23:25:42 +00:00
Lluís Batlle i Rossell 2423a7c821 Enabling the build of uclibc (I don't know why it was commented)
svn path=/nixpkgs/trunk/; revision=22816
2010-07-29 23:18:49 +00:00
Eelco Dolstra 20db67154c * bclr: shrink fixes.patch from 3.6 MB (!) to 11 KB by not
including Autoconf/Automake generated code.

svn path=/nixpkgs/trunk/; revision=22815
2010-07-29 19:56:16 +00:00
Eelco Dolstra 907bb1aac6 * ltrace: updated to 0.5.3.
* libdbi / libdbi-drivers: updated to 0.8.3, and make it compile with
  SQLite.
* qemu-image: fix the URL.
* gdmap: make it build again (requires an older GTK+).
* rlwrap: updated to 0.37.
* smbfs-fuse -> fusesmb to match the upstream name.
* x11vnc: updated to 0.9.10.
* clearlyU: fix the URL.
* Various packages: follow the coding conventions.

svn path=/nixpkgs/trunk/; revision=22814
2010-07-29 18:55:16 +00:00
Lluís Batlle i Rossell 79dec6e9a7 Adding Vigra
svn path=/nixpkgs/trunk/; revision=22809
2010-07-29 14:38:39 +00:00
Eelco Dolstra ba498d4a43 * composedArgsAndFun -> makeOverridable for consistency.
* Rename a few single-version packages to "default.nix".

svn path=/nixpkgs/trunk/; revision=22803
2010-07-29 08:21:21 +00:00
Lluís Batlle i Rossell 41b7a3cda6 Making tigervnc build with the xserver 1.8
svn path=/nixpkgs/trunk/; revision=22802
2010-07-29 07:59:06 +00:00
Eelco Dolstra b1afe4e7ac * Finish renaming.
svn path=/nixpkgs/trunk/; revision=22801
2010-07-29 07:02:26 +00:00
Eelco Dolstra 5b2dcdd24d * Remove the old PHP.
svn path=/nixpkgs/trunk/; revision=22800
2010-07-29 07:00:00 +00:00
Eelco Dolstra f1598a8941 * More cleanup.
svn path=/nixpkgs/trunk/; revision=22798
2010-07-28 18:01:17 +00:00
Eelco Dolstra d67aefc19d * Remove `customKernel' which is obsolete as far as I can tell.
* Remove `sumTwoArgs' since it has no remaining callers.

svn path=/nixpkgs/trunk/; revision=22797
2010-07-28 16:09:13 +00:00
Eelco Dolstra fa314f0724 * Remove KVM (obsolete -> qemu-kvm).
svn path=/nixpkgs/trunk/; revision=22796
2010-07-28 15:39:39 +00:00
Eelco Dolstra 749b8607ca * More cleanup.
svn path=/nixpkgs/trunk/; revision=22795
2010-07-28 15:35:01 +00:00
Peter Simons 93ff8697d1 pkgs/tools/networking/p2p/tahoe-lafs: add mock060 to propagatedBuildInputs
The package is required for the regression test suite. Adding it to
buildInputs would probably work, too, but I haven't tried it.

svn path=/nixpkgs/trunk/; revision=22792
2010-07-28 13:09:20 +00:00
Peter Simons 38bda8a8bf pkgs/top-level/python-packages.nix: added python-mock-0.6.0
This version seems to be an unofficial release from tahoe-lafs.org based
on the mock-0.1.0 release from python-mock.sourceforge.net. It should
probably replace the old version we have in here.

svn path=/nixpkgs/trunk/; revision=22791
2010-07-28 13:09:04 +00:00
Peter Simons 4630c1854d pycryptopp: base python wrapper on the Nix store version of libcrypto++
rather than the version that's included in the distribution archive

svn path=/nixpkgs/trunk/; revision=22788
2010-07-28 13:07:05 +00:00
Peter Simons df013849e4 python-numpy: improved support for BLAS and LAPACK via gfortran
svn path=/nixpkgs/trunk/; revision=22787
2010-07-28 13:05:35 +00:00
Peter Simons b89f310c7a pkgs/development/libraries/crypto++: fixed build impurity
* Don't build with "-march=native", because the generated binaries
   won't work reliably on systems with a different CPU. Instead,
   "--march=i686" is used on x86, and "--march=nocona" an x86_64.
   Otherwise, "--march" remains unset.

 * Compile with -O3 instead of -O2. This code is performance-critical.

 * Don't build with '-g'.

svn path=/nixpkgs/trunk/; revision=22785
2010-07-28 13:03:11 +00:00
Eelco Dolstra d81ed8201f * Turn vim/default.nix into a regular package. We don't need two
configurable VIMs.

svn path=/nixpkgs/trunk/; revision=22784
2010-07-28 12:52:54 +00:00
Eelco Dolstra 6609710409 * Get rid of many instances of "args: with args;", and other coding
guidelines violations.
* Updated libsamplerate to 0.1.7.

svn path=/nixpkgs/trunk/; revision=22782
2010-07-28 11:55:54 +00:00
Peter Simons ea3ce74312 python-setuptools-darcs: the build process seems to depend on 'darcsver'
| source root is setuptools_darcs-1.2.9
 | patching sources
 | configuring
 | no configure script, doing nothing
 | building
 | running tests
 | Download error: [Errno -3] Temporary failure in name resolution -- Some packages may not be found!
 | Couldn't find index page for 'darcsver' (maybe misspelled?)
 | Download error: [Errno -3] Temporary failure in name resolution -- Some packages may not be found!
 | No local packages or download links found for darcsver>=1.2.0
 | Traceback (most recent call last):
 |   File "setup.py", line 79, in <module>
 |     zip_safe=False, # I prefer unzipped for easier access.
 |   File "/nix/store/r6xlmlf0amzwhkvkv0v656jgx7r299g7-python-2.6.5/lib/python2.6/distutils/core.py", line 113, in setup
 |     _setup_distribution = dist = klass(attrs)
 |   File "build/bdist.linux-x86_64/egg/setuptools/dist.py", line 260, in __init__
 |   File "build/bdist.linux-x86_64/egg/setuptools/dist.py", line 284, in fetch_build_eggs
 |   File "build/bdist.linux-x86_64/egg/pkg_resources.py", line 563, in resolve
 |   File "build/bdist.linux-x86_64/egg/pkg_resources.py", line 799, in best_match
 |   File "build/bdist.linux-x86_64/egg/pkg_resources.py", line 811, in obtain
 |   File "build/bdist.linux-x86_64/egg/setuptools/dist.py", line 327, in fetch_build_egg
 |   File "build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py", line 434, in easy_install
 |   File "build/bdist.linux-x86_64/egg/setuptools/package_index.py", line 475, in fetch_distribution
 | AttributeError: 'NoneType' object has no attribute 'clone'
 | builder for `/nix/store/rkm5fzs0p6hh45mvpzv0qqphmsjnyag8-python-setuptools-darcs-1.2.9.drv' failed with exit code 1
 | error: build of `/nix/store/rkm5fzs0p6hh45mvpzv0qqphmsjnyag8-python-setuptools-darcs-1.2.9.drv' failed

svn path=/nixpkgs/trunk/; revision=22780
2010-07-28 09:33:35 +00:00
Peter Simons 1bb86133c7 pkgs/tools/networking/p2p/tahoe-lafs: updated to version 1.7.1
svn path=/nixpkgs/trunk/; revision=22774
2010-07-27 23:52:22 +00:00
Peter Simons 3819998730 pycryptopp: updated to version 0.5.19
svn path=/nixpkgs/trunk/; revision=22772
2010-07-27 23:52:08 +00:00
Peter Simons ceb01a86ea python-nevow: updated to version 0.10.0
svn path=/nixpkgs/trunk/; revision=22771
2010-07-27 23:52:02 +00:00
Peter Simons d1b181e8bb python-foolscap: updated to version 0.5.1
svn path=/nixpkgs/trunk/; revision=22770
2010-07-27 23:51:56 +00:00
Peter Simons 07a0bf9be0 python-darcsver: updated to version 1.5.1
svn path=/nixpkgs/trunk/; revision=22769
2010-07-27 23:51:48 +00:00
Peter Simons 3a98d25dfd python-argparse: updated to version 1.1
svn path=/nixpkgs/trunk/; revision=22768
2010-07-27 23:51:42 +00:00
Peter Simons 810814b85a pyutil: updated to version 1.7.9 (and disabled test suite)
When the regression test suite is run, it tries to compile some plug-in
code into Twisted's store path, and fails. I'm not sure how to remedy
this problem.

svn path=/nixpkgs/trunk/; revision=22767
2010-07-27 23:51:36 +00:00
Peter Simons b3124aa13a python-zfec: updated to version 1.4.7
svn path=/nixpkgs/trunk/; revision=22766
2010-07-27 23:51:29 +00:00
Peter Simons 62ac430904 python-simplejson: updated to version 2.1.1
svn path=/nixpkgs/trunk/; revision=22765
2010-07-27 23:51:22 +00:00
Peter Simons 67b620b66f python-setuptools-trial: updated to version 0.5.9
svn path=/nixpkgs/trunk/; revision=22764
2010-07-27 23:51:16 +00:00
Peter Simons 3c5b7b846e python-setuptools-darcs: updated to version 1.2.9
svn path=/nixpkgs/trunk/; revision=22763
2010-07-27 23:51:10 +00:00
Peter Simons df093a358f python-twisted: updated to 10.1.0
svn path=/nixpkgs/trunk/; revision=22762
2010-07-27 23:51:04 +00:00
Peter Simons 9a72349f84 python-zope-interface: updated to version 3.6.1
svn path=/nixpkgs/trunk/; revision=22761
2010-07-27 23:50:57 +00:00
Peter Simons 84323ac979 pycryptopp: use the embedded crypto++ library when compiling this module
crypto++ has an impurity that leads to test suite failures in this
module, i.e. in sha256. When that impurity has been fixed, we should try
building on top of the the pristine crypto++ library again.

svn path=/nixpkgs/trunk/; revision=22760
2010-07-27 23:50:51 +00:00
Peter Simons 81a2c9d395 python-numpy: add buildInput gfortran to enable support for blas and lapack
svn path=/nixpkgs/trunk/; revision=22759
2010-07-27 23:50:45 +00:00
Peter Simons fb1142ee5c pkgs/top-level/all-packages.nix: crypto++-5.6.0 is compiled with "-O2 -march=native -mtune=native"
Ought to be fixed ASAP. I'll probably do it tomorrow.

svn path=/nixpkgs/trunk/; revision=22758
2010-07-27 23:50:35 +00:00
Eelco Dolstra 159d141fb8 * Make Thunderbird 3.x the default.
svn path=/nixpkgs/trunk/; revision=22749
2010-07-27 11:46:03 +00:00
Eelco Dolstra 228c6e0c1f * Merged the x-updates branch (latest X server / libraries, GTK+,
Fontconfig, etc.).

svn path=/nixpkgs/trunk/; revision=22735
2010-07-26 13:59:12 +00:00
Peter Simons 2e15430e47 pkgs/top-level/all-packages.nix: stripped trailing whitespace
svn path=/nixpkgs/trunk/; revision=22734
2010-07-26 13:41:09 +00:00
Peter Simons d137679f20 pkgs/applications/editors/emacs-modes/rudel: added rudel 0.2-4
A collaborative editing environment for GNU Emacs.

svn path=/nixpkgs/trunk/; revision=22733
2010-07-26 13:41:03 +00:00
Ludovic Courtès c0cafc5ec7 GNU IceCat 3.6.7.
svn path=/nixpkgs/trunk/; revision=22732
2010-07-25 14:16:09 +00:00
Eelco Dolstra 3f287cfb1d * Ensure that the dell-bluetooth device does not stay in the "hard
blocked" state.

svn path=/nixpkgs/branches/x-updates/; revision=22730
2010-07-25 12:15:59 +00:00
Eelco Dolstra 07afe31016 * Doh, we already had OpenSSL 1.0.0. Use the updated Darwin patch.
svn path=/nixpkgs/branches/x-updates/; revision=22722
2010-07-23 15:05:20 +00:00
Andres Löh 5503148e05 Minor fix for release.nix.
svn path=/nixpkgs/trunk/; revision=22716
2010-07-22 18:55:32 +00:00
Andres Löh 73bee7da33 Switched the default version of ghc and Haskell Platform to 6.12.3 and 2010.2.0.0.
svn path=/nixpkgs/trunk/; revision=22715
2010-07-22 18:47:59 +00:00
Andres Löh 6c90771ac6 * Updated darcs to 2.4.4.
* Added Haskell Platform 2010.2.0.0.
* Added cairo package in preparation for adding a new gtk2hs.

svn path=/nixpkgs/trunk/; revision=22714
2010-07-22 18:04:39 +00:00
Eelco Dolstra 0db478d40b * Sync with the trunk.
svn path=/nixpkgs/branches/x-updates/; revision=22707
2010-07-22 13:18:07 +00:00
Eelco Dolstra fc47f20db1 * Try to build OpenOffice and Go-oo with Neon 0.29, since 0.26 doesn't
work anymore.

svn path=/nixpkgs/branches/x-updates/; revision=22702
2010-07-22 10:41:34 +00:00
Ludovic Courtès 8297acd511 Add Seeks, a "social" search engine.
svn path=/nixpkgs/trunk/; revision=22698
2010-07-22 09:03:35 +00:00
Ludovic Courtès 35cbabdab4 ViTE from SVN.
svn path=/nixpkgs/trunk/; revision=22696
2010-07-22 09:01:42 +00:00
Ludovic Courtès 3c482c79d6 GNU Dico 2.1.
svn path=/nixpkgs/trunk/; revision=22695
2010-07-22 09:01:20 +00:00
Ludovic Courtès c4d05c0e3e Give Org-Mode a high priority.
svn path=/nixpkgs/trunk/; revision=22694
2010-07-22 08:59:46 +00:00
Ludovic Courtès f497701642 Add upstream Org-Mode.
svn path=/nixpkgs/trunk/; revision=22693
2010-07-22 08:59:12 +00:00
Eelco Dolstra f555da864d * dar: build with --disable-dar-static, apparently the zlib update
broke it.  Also upgrade to 2.3.10 and turn on ACL support.

svn path=/nixpkgs/branches/x-updates/; revision=22690
2010-07-21 15:30:25 +00:00
Andres Löh df9f4a8696 Added a couple of web-programming-related Haskell packages.
svn path=/nixpkgs/trunk/; revision=22683
2010-07-21 09:41:12 +00:00
Eelco Dolstra 78a5abdf85 * Updated the X.org server to 1.8.2. Note that it no longer depends
on HAL but instead uses udev to autoconfigure input devices.  We'll
  have to update the NixOS X server module accordingly, I guess.  See
  https://fedoraproject.org/wiki/Input_device_configuration.
* Updated Mesa to 7.8.2.

svn path=/nixpkgs/branches/x-updates/; revision=22681
2010-07-20 19:24:21 +00:00
Eelco Dolstra 9909fdbbd6 * Fix evaluation problems.
svn path=/nixpkgs/branches/x-updates/; revision=22668
2010-07-19 22:24:26 +00:00
Eelco Dolstra b8928b09fd * Okay, make zlib a propagated build input of glib.
svn path=/nixpkgs/branches/x-updates/; revision=22666
2010-07-19 11:43:45 +00:00
Eelco Dolstra b080c11720 * eggdbus now needs zlib because it uses glib's Requires.private.
Maybe zlib should be a propagatedBuildInput in glib, not sure.

svn path=/nixpkgs/branches/x-updates/; revision=22662
2010-07-19 10:32:31 +00:00
Eelco Dolstra 030981c1e7 * nbd requires a static glib. Since it's the only package that does
so, don't build the default glib statically but pass a custom glib
  to nbd.

svn path=/nixpkgs/branches/x-updates/; revision=22658
2010-07-19 08:44:32 +00:00
Eelco Dolstra fa38234d64 * Make Firefox 3.6 the default.
svn path=/nixpkgs/branches/x-updates/; revision=22653
2010-07-18 23:23:16 +00:00
Eelco Dolstra 0695a9707c * GTK+ 2.20, Glib 2.24 etc.
svn path=/nixpkgs/branches/x-updates/; revision=22652
2010-07-18 23:22:59 +00:00
Ludovic Courtès 3aee92f068 Geeqie: Use libchamplain.
svn path=/nixpkgs/trunk/; revision=22650
2010-07-18 22:47:23 +00:00
Ludovic Courtès cd06afd761 Add libchamplain, a library to display maps.
svn path=/nixpkgs/trunk/; revision=22649
2010-07-18 22:46:19 +00:00
Ludovic Courtès cbd5317e82 Add Clutter{,-GTK}, a library for fancy GUIs.
svn path=/nixpkgs/trunk/; revision=22648
2010-07-18 22:45:03 +00:00
Eelco Dolstra 3d442ad185 * Apply a patch that is apparently required to make the kernel work
properly on Amazon EC2.
* Always apply the CIFS timeout patch.  It's rather annoying to have
  to build a separate kernel for the VM tests.

svn path=/nixpkgs/trunk/; revision=22630
2010-07-18 21:10:46 +00:00
Andres Löh 5f8328c461 Preparing for the upcoming Haskell Platform release.
svn path=/nixpkgs/trunk/; revision=22620
2010-07-17 13:23:48 +00:00
Andres Löh bcc7c49488 Added the hint Haskell package plus dependencies.
svn path=/nixpkgs/trunk/; revision=22617
2010-07-16 10:39:02 +00:00
Lluís Batlle i Rossell 41fc0fba17 Adding libupnp to vlc (I hope this will enable some DLNA things)
svn path=/nixpkgs/trunk/; revision=22602
2010-07-14 15:02:34 +00:00
Eelco Dolstra 7dd76e9ce5 * Fix a hard-coded reference in `shadow' to /usr/sbin/nscd. This
prevented the nscd cache from being properly invalidated after a
  change, so that e.g. `useradd x; id x' would fail.

svn path=/nixpkgs/trunk/; revision=22599
2010-07-14 12:10:26 +00:00
Ludovic Courtès c167ef5ca5 Hugin: Use `stdenv2', for the CMake-related fixes.
svn path=/nixpkgs/trunk/; revision=22594
2010-07-13 23:42:33 +00:00
Lluís Batlle i Rossell 4301f209c9 Making the tigervnc server work.
svn path=/nixpkgs/trunk/; revision=22584
2010-07-13 17:57:13 +00:00
Ludovic Courtès 2113d82947 Add PIUS.
svn path=/nixpkgs/trunk/; revision=22580
2010-07-13 16:32:14 +00:00
Lluís Batlle i Rossell 6c0b62d1a5 Made the tightvnc build the Xvnc server - although I still did not manage to start it.
svn path=/nixpkgs/trunk/; revision=22569
2010-07-12 22:15:50 +00:00
Lluís Batlle i Rossell 196e8ad0f6 TigerVNC (without the server Xvnc still)
svn path=/nixpkgs/trunk/; revision=22568
2010-07-12 22:15:36 +00:00
Lluís Batlle i Rossell a8c5534849 Adding virtualgl (and therefore, libjpeg-turbo, a SIMD API-compatible libjpeg)
svn path=/nixpkgs/trunk/; revision=22553
2010-07-10 08:45:44 +00:00
Lluís Batlle i Rossell 134e944758 Making hydra build nixSqlite
svn path=/nixpkgs/trunk/; revision=22552
2010-07-09 17:30:22 +00:00
Lluís Batlle i Rossell 89b116ba67 Adding firmware for the wireless cards rt2870 (for a rt3072 hw in fact)
svn path=/nixpkgs/trunk/; revision=22551
2010-07-09 17:30:08 +00:00
David Guibert b6a84f5c50 update ikiwiki and fix its dependencies.
- when installing perl.XML_LibXML:
  Cannot write to /nix/store/032pczp65kvry14ln8g8s244qlysrfi1-perl-XML-SAX-0.96/lib/perl5/site_perl/5.10.1/XML/SAX/ParserDetails.ini: Permission denied at /nix/store/032pczp65kvry14ln8g8s244qlysrfi1-perl-XML-SAX-0.96/lib/perl5/site_perl/5.10.1/XML/SAX.pm line 191.

SKIP_SAX_INSTALL=1 fixes this.

- RPC-XML hangs on during the check phase.
A temporary work around is to set doCheck as false.

svn path=/nixpkgs/trunk/; revision=22550
2010-07-09 13:16:00 +00:00
David Guibert 9e8da1fa0c libcgroup: library that abstracts the control group file system in Linux.
svn path=/nixpkgs/trunk/; revision=22548
2010-07-09 13:15:51 +00:00
David Guibert a826eeff23 openmpi 1.4.2 with gfortran
svn path=/nixpkgs/trunk/; revision=22547
2010-07-09 13:15:47 +00:00
David Guibert 74b7818349 vala - Compiler for the GObject type system
svn path=/nixpkgs/trunk/; revision=22546
2010-07-09 13:15:40 +00:00
Michael Raskin 72f6e78cb0 Make midori use the webkit version from libsoup
svn path=/nixpkgs/trunk/; revision=22544
2010-07-09 11:35:07 +00:00
Eelco Dolstra f2aa054357 * Revive gmime-2.2.x, because gmime-2.4.x is not backwards
compatible.  For instance, Pan requires gmime-2.2.

svn path=/nixpkgs/trunk/; revision=22543
2010-07-09 09:12:42 +00:00
Michael Raskin 765e4ee981 Oops, pass needed args
svn path=/nixpkgs/trunk/; revision=22542
2010-07-09 04:24:31 +00:00
Lluís Batlle i Rossell 874b619180 Adding Black Shades Elite (a fork of Black Shades)
svn path=/nixpkgs/trunk/; revision=22538
2010-07-08 18:06:01 +00:00
Michael Raskin ccc497f80d Make WebKit use libsoup 2.31.2 via deepOverride. Edit a few packages that were overridable but did not allow extra arguments. Remove a catch with deepOverride that pkgs.lib had this attribute in a different sense.
svn path=/nixpkgs/trunk/; revision=22529
2010-07-08 13:25:52 +00:00
Andres Löh eb2cb9afd4 Added ghc-6.12.3. Does not build yet for me -- still have to figure out why.
svn path=/nixpkgs/trunk/; revision=22525
2010-07-08 11:43:06 +00:00
Lluís Batlle i Rossell f3a813ae77 Adding Black Shades
svn path=/nixpkgs/trunk/; revision=22520
2010-07-07 22:22:19 +00:00
Lluís Batlle i Rossell 6b701731ec Adding gltron.
svn path=/nixpkgs/trunk/; revision=22519
2010-07-07 21:44:09 +00:00
Lluís Batlle i Rossell 0c06d77a7d Adding clapack.
svn path=/nixpkgs/trunk/; revision=22514
2010-07-07 15:10:01 +00:00
Eelco Dolstra f928e6ad5a * Updated reiserfsprogs to 3.6.21. Also install fsck.reiserfs and
mkfs.reiserfs symlinks.  The former is important to keep mountall
  happy.

svn path=/nixpkgs/trunk/; revision=22511
2010-07-07 14:23:30 +00:00
Lluís Batlle i Rossell 9cadb2cdc6 Making privoxy build (set an older autoconf - the current privxoy does not like the newer)
svn path=/nixpkgs/trunk/; revision=22503
2010-07-07 08:58:56 +00:00
Michael Raskin 058ccd7714 Apparently fixed GCL build
svn path=/nixpkgs/trunk/; revision=22498
2010-07-06 16:48:03 +00:00
Eelco Dolstra 3f92e4d2c8 * Added Blueman (a Bluetooth application).
* Added obex-data-server and python-notify, needed by Blueman.

svn path=/nixpkgs/trunk/; revision=22497
2010-07-06 14:54:22 +00:00
Rob Vermaas ac26c3bee1 new version of chrome with new deps
svn path=/nixpkgs/trunk/; revision=22486
2010-07-06 08:18:14 +00:00
Michael Raskin 9fe4caf066 Readding old Graphviz: I need it for some graph program that relies on its way of grid snapping.
svn path=/nixpkgs/trunk/; revision=22483
2010-07-05 19:04:33 +00:00
Ludovic Courtès d66e8e5d73 GNU Automake 1.11: Remove useless workaround.
svn path=/nixpkgs/trunk/; revision=22482
2010-07-05 16:55:54 +00:00
Eelco Dolstra 19116c7f23 * For the moment, disable `make check' in Automake 1.11.1 to get
mountall to build again.

svn path=/nixpkgs/trunk/; revision=22480
2010-07-05 14:34:08 +00:00
Michael Raskin 06664135a4 Ejabberd will use old Erlang for now
svn path=/nixpkgs/trunk/; revision=22477
2010-07-05 12:47:35 +00:00
Ludovic Courtès 2bdfbcadc6 guile-2-test: Remove `guile_1_9_coverage'.
svn path=/nixpkgs/trunk/; revision=22469
2010-07-04 21:53:01 +00:00
Ludovic Courtès c3484e59e9 GNU GRUB 1.98.
svn path=/nixpkgs/trunk/; revision=22465
2010-07-04 21:11:13 +00:00
Yury G. Kudryashov f528440f05 Add qjson
svn path=/nixpkgs/trunk/; revision=22451
2010-07-04 20:59:47 +00:00
Yury G. Kudryashov 0642ef4935 Add libdbusmenu-qt
svn path=/nixpkgs/trunk/; revision=22450
2010-07-04 20:55:50 +00:00
Yury G. Kudryashov 41e58b3982 Add convmv
svn path=/nixpkgs/trunk/; revision=22444
2010-07-03 08:06:01 +00:00
Lluís Batlle i Rossell 6aa4b636dc Adding a skeleton for the path64 compiler.
It builds, but it needs some reworks as running it lookes at /usr/bin/ld and things like that.
I leave that for another day.

svn path=/nixpkgs/trunk/; revision=22442
2010-07-02 21:44:31 +00:00
Sander van der Burg 6e9cc67a25 Added k3b-2.0.0 for KDE 4.X
svn path=/nixpkgs/trunk/; revision=22438
2010-07-01 15:00:46 +00:00
Eelco Dolstra dc94c79d54 * Added lsiutil, a command-line utility for LSI controllers.
svn path=/nixpkgs/trunk/; revision=22437
2010-07-01 13:18:09 +00:00
Lluís Batlle i Rossell 5b4e3a5b40 Adding Wings 3D (as a side effect, update erlang, and add esdl).
svn path=/nixpkgs/trunk/; revision=22436
2010-07-01 09:08:37 +00:00
Michael Raskin e312c443fc Fixing interpreter paths in the end. Note that 4s-dump needs Perl Net::HTTP package that Nixpkgs apparently lack
svn path=/nixpkgs/trunk/; revision=22435
2010-07-01 05:05:47 +00:00
Michael Raskin 853212def0 Adding 4store RDF storage/SparQL server
svn path=/nixpkgs/trunk/; revision=22434
2010-06-30 21:51:48 +00:00
Yury G. Kudryashov dc475a09a9 Add hunspell
TODO: make it work (export DICTDIR)

svn path=/nixpkgs/trunk/; revision=22432
2010-06-30 15:53:28 +00:00
Michael Raskin 14eea491b8 Adding Redstore HTTP RDF/SPARQL server
svn path=/nixpkgs/trunk/; revision=22428
2010-06-29 22:18:49 +00:00
Evgeny Egorochkin 9ffa12eb19 Added Bangarang media player
svn path=/nixpkgs/trunk/; revision=22423
2010-06-26 18:29:42 +00:00
David Guibert 9d4a13f798 thunderbird: 3.1
svn path=/nixpkgs/trunk/; revision=22421
2010-06-26 14:23:22 +00:00
Evgeny Egorochkin 877d8a6f27 Packaged libxml++
svn path=/nixpkgs/trunk/; revision=22417
2010-06-26 01:40:42 +00:00
Michael Raskin 90ea2d1111 Fix FFTW argument to Ladspa Plugins
svn path=/nixpkgs/trunk/; revision=22414
2010-06-25 18:21:19 +00:00
Alexander Tsamutali cb8eb249e0 games/tremulous: New nixpkg.
svn path=/nixpkgs/trunk/; revision=22413
2010-06-25 15:09:53 +00:00
Lluís Batlle i Rossell 924177da84 New VLC, ffmpeg, x264 and libvpx all-in-one-rebuild. VP8 support.
svn path=/nixpkgs/trunk/; revision=22410
2010-06-24 22:55:25 +00:00
Michael Raskin 558251da4a Adding golly (a cellular automata program)
svn path=/nixpkgs/trunk/; revision=22391
2010-06-23 07:41:17 +00:00
David Guibert 4e3d3b707c noweb-2.11b
svn path=/nixpkgs/trunk/; revision=22384
2010-06-22 19:49:06 +00:00
Ludovic Courtès 454453a59d Attempt to cross-build Nix for GNU.
svn path=/nixpkgs/trunk/; revision=22373
2010-06-22 13:02:31 +00:00
Lluís Batlle i Rossell 99a94a777b Updating ngspice
svn path=/nixpkgs/trunk/; revision=22364
2010-06-21 20:34:23 +00:00
Lluís Batlle i Rossell 0e125635ed Fixing the aufs evaluation errors.
svn path=/nixpkgs/trunk/; revision=22361
2010-06-21 17:51:52 +00:00
Yury G. Kudryashov b39389560f Add meta.platforms to qt4 and merkaartor
Should fix one of hydra evaluation errors

svn path=/nixpkgs/trunk/; revision=22360
2010-06-21 17:06:08 +00:00
Evgeny Egorochkin 449a75420c Packaged libinfinity
svn path=/nixpkgs/trunk/; revision=22359
2010-06-21 16:06:18 +00:00
Evgeny Egorochkin d9b78f206f Added Quassel IRC client.
By default it's compiled as monolithic, but as soon as there's
a corresponding service, it should be changed to client/daemon split.

svn path=/nixpkgs/trunk/; revision=22351
2010-06-20 23:48:59 +00:00
Ludovic Courtès ee1718380d Add `python-mock', mock objects for Python.
svn path=/nixpkgs/trunk/; revision=22343
2010-06-20 15:52:28 +00:00
Ludovic Courtès dcc9f97e41 Add PyASN1, ASN.1 tools for Python.
svn path=/nixpkgs/trunk/; revision=22342
2010-06-20 15:52:23 +00:00
Evgeny Egorochkin 4ef24c6cd6 Addded SemNotes note-taking app
svn path=/nixpkgs/trunk/; revision=22340
2010-06-20 12:54:42 +00:00
Evgeny Egorochkin c4d7698f7f Make amule package overridable to be able to configure it
svn path=/nixpkgs/trunk/; revision=22339
2010-06-20 11:33:01 +00:00
Evgeny Egorochkin 4719a2ed3c Added flags to compile amule daemon and remote gui
svn path=/nixpkgs/trunk/; revision=22334
2010-06-19 02:19:39 +00:00
Michael Raskin c1059d8969 Fixing problems with Xscreensaver caused by using stdenv builder
svn path=/nixpkgs/trunk/; revision=22332
2010-06-18 19:33:15 +00:00
Lluís Batlle i Rossell da9e4402ee Pinta still does not build (xbuild pkgconfig problems), but mono and gtk-sharp-2 build fine.
svn path=/nixpkgs/trunk/; revision=22322
2010-06-18 08:16:21 +00:00
Lluís Batlle i Rossell 034005647b Adding hplip (HP's driver suite for printers and multi-function devices), which builds
but I have not tried to do anything with it

svn path=/nixpkgs/trunk/; revision=22321
2010-06-18 08:16:17 +00:00
Ludovic Courtès ff57c0e21e Move SimGrid under `science/misc'.
svn path=/nixpkgs/trunk/; revision=22312
2010-06-17 17:06:40 +00:00
Ludovic Courtès 3190f9ed6e Add Visual Trace Explorer (ViTE).
svn path=/nixpkgs/trunk/; revision=22311
2010-06-17 17:06:09 +00:00
Michael Raskin 4462d3b9c7 Fix some strange Uzbl library problem
svn path=/nixpkgs/trunk/; revision=22310
2010-06-17 15:23:38 +00:00
Ludovic Courtès 80780f066f Add HTTPFS2, for Linux.
svn path=/nixpkgs/trunk/; revision=22308
2010-06-17 12:44:40 +00:00
Michael Raskin b24d67c772 Try updating WebKit. Dependency check passes; will abuse Hydra to build it all.
svn path=/nixpkgs/trunk/; revision=22304
2010-06-17 05:20:16 +00:00
Michael Raskin c6b5662b78 Remove uzbl-experimental: now most changes go to master, and radical changes happen less
svn path=/nixpkgs/trunk/; revision=22302
2010-06-17 04:23:11 +00:00
Lluís Batlle i Rossell 57c012a16c Attempt at adding 'pinta'. It still does not build due to mono problems.
Nevertheless, I updated the gnome attribute names a bit so all that
gtk-sharp-2 goes a bit beyond.

svn path=/nixpkgs/trunk/; revision=22287
2010-06-15 22:25:38 +00:00
Sander van der Burg cc6acb3e40 Added my very experimental Visual Studio build stuff. You should be even more brave to use this
svn path=/nixpkgs/trunk/; revision=22273
2010-06-15 11:32:19 +00:00
Sander van der Burg 970ce3a878 Commited my experimental Visual C# build function. Currently, it should only be used by brave people
svn path=/nixpkgs/trunk/; revision=22272
2010-06-15 11:16:35 +00:00
Marc Weber 02adc9484b adobe_flex_sdk, use - instead of _ in name
svn path=/nixpkgs/trunk/; revision=22269
2010-06-14 22:35:40 +00:00
Ludovic Courtès 5be3acda2d Add Tulip, a graph visualization framework.
svn path=/nixpkgs/trunk/; revision=22264
2010-06-14 18:30:35 +00:00
Marc Weber 88d7d68c77 update Adobe Flex SDK
svn path=/nixpkgs/trunk/; revision=22260
2010-06-14 16:52:15 +00:00
Lluís Batlle i Rossell 68c33b2fe1 Adding merkaartor (a qt-based openstreetmap editor)
svn path=/nixpkgs/trunk/; revision=22244
2010-06-13 19:32:04 +00:00
Lluís Batlle i Rossell b1946eec91 Adding xoscope (oscilloscope for the sound card input, among others)
svn path=/nixpkgs/trunk/; revision=22242
2010-06-13 10:01:16 +00:00
Lluís Batlle i Rossell a4a34dd6e4 Moving dragonegg (gcc shared object plugin) into the llvm directory,
as I think it fits better there than in 'libraries'.

svn path=/nixpkgs/trunk/; revision=22238
2010-06-12 21:52:50 +00:00
Lluís Batlle i Rossell 684aa4b043 Removing llvm-gcc (gcc-4.2 only), because I think dragonegg outdates it (gcc-4.5.0 plugin).
svn path=/nixpkgs/trunk/; revision=22237
2010-06-12 21:52:45 +00:00
Lluís Batlle i Rossell 22a839c86d Making clang build for llvm 2.7
(I've not tested the usage of c++ headers though, but it builds c and c++ simple programs)

svn path=/nixpkgs/trunk/; revision=22236
2010-06-12 21:52:39 +00:00
Lluís Batlle i Rossell 1babf6ea14 Cleaning a bit what I commited about llvm, and making dragonegg build.
If passing to gcc4.5 the compile flag: "-fplugin=dragonegg.so" it will use the llvm optimizers and
code generators.

In that previous commit I enabled link time optimization and plugin support in gcc 4.5.0

svn path=/nixpkgs/trunk/; revision=22235
2010-06-12 20:54:35 +00:00
Lluís Batlle i Rossell e6ad625902 llvm update attempt + dragonegg
svn path=/nixpkgs/trunk/; revision=22234
2010-06-12 17:42:33 +00:00
Lluís Batlle i Rossell 7ac1e6a12b Making the sheevaplug kernel have nfs4 server and client
svn path=/nixpkgs/trunk/; revision=22233
2010-06-12 17:42:17 +00:00
Lluís Batlle i Rossell 0530f43655 Updating go, and making the go expression work in both i686-linux and x86_64-linux.
svn path=/nixpkgs/trunk/; revision=22230
2010-06-12 11:21:20 +00:00
Lluís Batlle i Rossell 9ffa9fc87f Updating autofs5. Using the upstream distribution system of tarball+patches,
instead of the Marc auto update system.

svn path=/nixpkgs/trunk/; revision=22229
2010-06-12 10:22:09 +00:00
Michael Raskin 0273c77148 A top-level entry for gosmore
svn path=/nixpkgs/trunk/; revision=22227
2010-06-11 22:37:47 +00:00
Ludovic Courtès ccfa69e8b6 GNU gv 3.7.1.
svn path=/nixpkgs/trunk/; revision=22216
2010-06-10 21:52:34 +00:00
Eelco Dolstra 8b18623656 * Updated bluez and obexd.
svn path=/nixpkgs/trunk/; revision=22211
2010-06-10 12:47:58 +00:00
Eelco Dolstra 6dddd07402 * vmTools: don't use klibc anymore. Just use utillinux/bash/etc.
svn path=/nixpkgs/trunk/; revision=22209
2010-06-10 12:28:04 +00:00
Michael Raskin 62e6ad4960 Add OpenSSL and VoIP support to Gajim
svn path=/nixpkgs/trunk/; revision=22194
2010-06-09 12:56:15 +00:00
David Guibert c6b05c7164 aufs2: patch for kernel 2.6.34
svn path=/nixpkgs/trunk/; revision=22178
2010-06-08 06:29:02 +00:00
Lluís Batlle i Rossell 20d949a6f5 Adding libusb to cups, so it can access usb printers.
svn path=/nixpkgs/trunk/; revision=22163
2010-06-07 08:24:06 +00:00
Ludovic Courtès 82c1349503 Proof General: Build and install via the makefile.
svn path=/nixpkgs/trunk/; revision=22162
2010-06-06 22:39:28 +00:00
Michael Raskin 43790aa2dc Fixing Gnokii build
svn path=/nixpkgs/trunk/; revision=22160
2010-06-05 21:14:41 +00:00
Lluís Batlle i Rossell 6c4cb05613 Adding zsync
svn path=/nixpkgs/trunk/; revision=22158
2010-06-05 19:23:57 +00:00
Lluís Batlle i Rossell 4328f6a1fe Updating bsdiff
svn path=/nixpkgs/trunk/; revision=22156
2010-06-05 11:40:23 +00:00
Lluís Batlle i Rossell 66b32efbcc Updating ccrypt
svn path=/nixpkgs/trunk/; revision=22150
2010-06-04 15:21:32 +00:00
Eelco Dolstra 240305fab4 * Added mountall. This is an Ubuntu utility that mounts filesystems
as they become available (as determined by monitoring udev) and
  emits Upstart events to inform other jobs that the filesystems are
  mounted.  This is very useful for NixOS (which currently ignores
  filesystems in the job dependency chain - very bad).

  Unfortunately, mountall depends on Plymouth (a boot splash
  implementation).  The patch allows mountall to build without
  Plymouth.  Since Plymouth is also used to inform users about failing
  mounts and get responses, some more changes will be needed.
  Probably mountall should emit a "mount-failed" event to trigger a
  root shell on the console to allow the user to repair the problem.

svn path=/nixpkgs/trunk/; revision=22143
2010-06-04 13:43:53 +00:00
Lluís Batlle i Rossell 02ea8daffa Making gtkwave more featured, adding more buildInputs.
svn path=/nixpkgs/trunk/; revision=22133
2010-06-03 15:37:02 +00:00
Marc Weber d3341315bd adding gis system grass (graphviz 3d is not supported yet)
svn path=/nixpkgs/trunk/; revision=22131
2010-06-03 15:19:59 +00:00
Marc Weber d3be228d96 adding firebird (and embedded library ?)
svn path=/nixpkgs/trunk/; revision=22130
2010-06-03 15:19:56 +00:00
Lluís Batlle i Rossell e8fc7c3d9e Updating feh.
svn path=/nixpkgs/trunk/; revision=22127
2010-06-03 14:41:41 +00:00
Eelco Dolstra 108f63eb80 * Added cifs-utils (mount.cifs properly packaged). This obsoletes
mount-cifs.

svn path=/nixpkgs/trunk/; revision=22124
2010-06-03 14:28:48 +00:00
Marc Weber 0be243e26d t/gis/qgis
updating qgis

Signed-off-by: Marc Weber <marco-oweber@gmx.de>

svn path=/nixpkgs/trunk/; revision=22115
2010-06-03 00:51:23 +00:00
Marc Weber 0d6228fa83 t/gis/gdal
updating gdal

Signed-off-by: Marc Weber <marco-oweber@gmx.de>

svn path=/nixpkgs/trunk/; revision=22114
2010-06-03 00:51:20 +00:00
Marc Weber 5f5d6f185f t/gis/libgeotiff
adding libgeotiff

Signed-off-by: Marc Weber <marco-oweber@gmx.de>

svn path=/nixpkgs/trunk/; revision=22113
2010-06-03 00:51:13 +00:00
Eelco Dolstra 0cef95c341 * Remove our hacked up version of `su' from coreutils.
svn path=/nixpkgs/trunk/; revision=22108
2010-06-02 21:11:21 +00:00
Eelco Dolstra 6f2b3f46cc * PAM updated to 1.1.1. Also build with libxcrypt support.
* Cracklib updated.  Removed the dictionary as it should be moved into
  a separate package.

svn path=/nixpkgs/trunk/; revision=22105
2010-06-02 17:31:20 +00:00
Eelco Dolstra e0adbee395 * Updated shadow to 4.1.4.2 (and build it with PAM support). This
might replace the pwdutils, pam_login and su packages in NixOS.

svn path=/nixpkgs/trunk/; revision=22103
2010-06-02 16:45:14 +00:00
Lluís Batlle i Rossell e9f6c6e437 Adding pdftk for roconnor.
svn path=/nixpkgs/trunk/; revision=22097
2010-06-02 08:21:49 +00:00
Lluís Batlle i Rossell a2e353cd50 Adding htmldoc. I had to update fltk 1.1 for it to build.
svn path=/nixpkgs/trunk/; revision=22096
2010-06-01 21:15:40 +00:00
Eelco Dolstra d1ae973761 * Added dash.
svn path=/nixpkgs/trunk/; revision=22088
2010-06-01 17:05:29 +00:00
Eelco Dolstra 09b8d46dc9 * splashutils: use Glibc instead of klibc.
svn path=/nixpkgs/trunk/; revision=22086
2010-06-01 16:36:07 +00:00
Ludovic Courtès 25e05e4cf9 Add SimGrid, a simulator for distributed applications in heterogeneous environments.
svn path=/nixpkgs/trunk/; revision=22078
2010-06-01 10:13:29 +00:00
Eelco Dolstra 81cab76ecd * Updated Google Earth.
svn path=/nixpkgs/trunk/; revision=22064
2010-05-30 23:25:30 +00:00
Eelco Dolstra a6d63f4fab * nvidia_x11: added a flag to build only the libraries. This is
useful on x86_64-linux to support i686 binaries: there we need the
  NVIDIA OpenGL libraries, but not the kernel module or the
  nvidia-settings program (which just cause a lot of unnecessary and
  large dependencies).

svn path=/nixpkgs/trunk/; revision=22061
2010-05-30 21:56:56 +00:00
Alexander Tsamutali 2cc92567a2 applications/misc/zathura: New nixbuild.
svn path=/nixpkgs/trunk/; revision=22057
2010-05-29 21:15:13 +00:00
Marc Weber 5a59b1b55d adding PHP. 5.3.2. See comments.
I had to add the newer PHP because current PHP 5.2.11 doesn't read SOAP
from https urls. Debian's PHP does work - I couldn't find their fix

svn path=/nixpkgs/trunk/; revision=22056
2010-05-29 18:26:54 +00:00
David Guibert b50f4cabcc cssutils: version 0.9.7a6
svn path=/nixpkgs/trunk/; revision=22053
2010-05-29 12:33:20 +00:00
Yury G. Kudryashov c917c2970a CAM::PDF with dependencies
svn path=/nixpkgs/trunk/; revision=22050
2010-05-29 09:19:21 +00:00
Eelco Dolstra d9b0896866 * I assume building Emacs without GTK was only supposed to happen on
Darwin.

svn path=/nixpkgs/trunk/; revision=22048
2010-05-28 13:59:57 +00:00
Eelco Dolstra 629849c449 * Renamed "aufs2-utils" to the upstream name ("aufs-util").
svn path=/nixpkgs/trunk/; revision=22040
2010-05-28 09:38:44 +00:00
Eelco Dolstra dbf8d72080 * Remove builds of the aufs1 module for recent kernels.
svn path=/nixpkgs/trunk/; revision=22036
2010-05-28 09:23:51 +00:00
Eelco Dolstra 74b6d94ed5 * Get aufs2 and aufs2-util to build against Linux 2.6.32.
svn path=/nixpkgs/trunk/; revision=22032
2010-05-28 07:09:15 +00:00
Michael Raskin 6a185ec765 Top-level entry for gambit commit
svn path=/nixpkgs/trunk/; revision=22028
2010-05-28 06:08:50 +00:00
David Guibert 7c19b40dbf kernel-2.6.34
The Linux 2.6.34 kernel delivers (from [1])
- many open-source GPU driver updates,
- GPU switching support,
- the LogFS file-system,
- faster KVM networking support,
- Btrfs file-system updates,
- the VMware memory ballooning driver,
- and many other changes.

A more exhaustive list of the Linux 2.6.34 kernel changes from
architectures to network drivers is listed on the Wiki at
KernelNewbies.org.[2]

[1] http://www.phoronix.com:
[2] http://kernelnewbies.org/Linux_2_6_34

svn path=/nixpkgs/trunk/; revision=22023
2010-05-27 19:44:23 +00:00
David Guibert b62332db76 xournal: update to 0.4.5
svn path=/nixpkgs/trunk/; revision=22022
2010-05-27 19:44:17 +00:00
David Guibert 8a8a0327ff add qdu: a graphical disk usage based on qt.
svn path=/nixpkgs/trunk/; revision=22021
2010-05-27 19:44:12 +00:00
David Guibert 8f19675cff gdal: update to 1.7.1
svn path=/nixpkgs/trunk/; revision=22020
2010-05-27 19:44:07 +00:00
David Guibert b0859969a5 omake: version 0.9.8.5
svn path=/nixpkgs/trunk/; revision=22019
2010-05-27 19:44:03 +00:00
David Guibert 66c784d4dd added autossh 1.4b.
svn path=/nixpkgs/trunk/; revision=22018
2010-05-27 19:43:57 +00:00
David Guibert 85a1936685 conky: compiled without X support, usefull with dwm.
svn path=/nixpkgs/trunk/; revision=22015
2010-05-27 19:33:58 +00:00
David Guibert acafca89ba add tls support for msmtp
svn path=/nixpkgs/trunk/; revision=22010
2010-05-27 19:33:33 +00:00
David Guibert b3e7257c5f talloc 2.0.1
svn path=/nixpkgs/trunk/; revision=22009
2010-05-27 19:33:28 +00:00
David Guibert 3182083b58 haskell-hmatrix: linear algebra and numerical computation (v0.9.3.9)
svn path=/nixpkgs/trunk/; revision=22008
2010-05-27 19:33:23 +00:00
Rob Vermaas 41aa02a8b4 inital try with jdk6 on cygwin
svn path=/nixpkgs/trunk/; revision=22000
2010-05-27 11:04:45 +00:00
Marc Weber bddb72ec8a psotgis:
- support older versions (which are used by other distributions)
- give utilyt scripts nicer names
- pg_db_postgis_enable: support loading comments

svn path=/nixpkgs/trunk/; revision=21992
2010-05-26 19:01:10 +00:00
Ludovic Courtès c228b1a957 Ant/GCJ: Clean up.
svn path=/nixpkgs/trunk/; revision=21990
2010-05-26 14:53:13 +00:00
Ludovic Courtès b62acd088e Make GCJ 4.5 the default GCJ.
svn path=/nixpkgs/trunk/; revision=21989
2010-05-26 14:53:09 +00:00
Ludovic Courtès 343bbc2712 Have Hydra cross-build GNU Mach.
svn path=/nixpkgs/trunk/; revision=21987
2010-05-26 08:55:58 +00:00
Ludovic Courtès 883ab19eb4 GNU Mach: Add full build.
svn path=/nixpkgs/trunk/; revision=21986
2010-05-26 08:55:55 +00:00
Lluís Batlle i Rossell f3ac7c55ec Updating the go_oo expression to not to break the tarball (thanks to Rob)
svn path=/nixpkgs/trunk/; revision=21982
2010-05-26 07:03:25 +00:00
Ludovic Courtès c5098ff56e GCC 4.5: Add dependency on Perl.
svn path=/nixpkgs/trunk/; revision=21974
2010-05-25 19:38:18 +00:00
Ludovic Courtès fc6b345f94 GCJ 4.5: Build with `--enable-java-home' & co.
svn path=/nixpkgs/trunk/; revision=21973
2010-05-25 19:38:13 +00:00
Lluís Batlle i Rossell f7bd2a829e Adding yasm and lame support to mplayer
svn path=/nixpkgs/trunk/; revision=21972
2010-05-25 18:39:29 +00:00
Lluís Batlle i Rossell adc9f57c71 Adding lame to ffmpeg so it can encode mp3, and allow it also build its assembly
routines adding yasm, and --enable-runtime-cpudetection, that I hope will end in
faster executions

svn path=/nixpkgs/trunk/; revision=21971
2010-05-25 18:39:24 +00:00
Lluís Batlle i Rossell 8b59ac89bf Adding go-oo in multiple languages. The expression and names can be improved, but at least
I reached a point where it works. Patches welcome - even without asking.
I should add a way to regenerate src.nix automatically too, but the information on what
to dowload is only inside their download script generated after configure.

There are more things that can be added: kde4 support, gstreamer, ...

I did not check that all the buildInputs are needed - most come from the old openoffice expression.

svn path=/nixpkgs/trunk/; revision=21969
2010-05-25 17:05:52 +00:00
Eelco Dolstra 719f023f33 * A quick hack to make release.nix evaluate in a reasonable amount of
time and space on the new (non-ATerm) Nix expression evaluator.  It
  turns out that release.nix relied rather heavily on maximal laziness
  for efficiency: every job calls `allPackages { inherit system; }'
  for each platform.  This causes the dependencies of the job to be
  reevaluated for every job/platform combination.  This is very slow
  and (because the evaluator doesn't have a garbage collector yet)
  eventually causes the evaluator to run out of memory and be killed.

  As a workaround, I've replaced the calls to `allPackages' with a
  quasi-memoised `pkgsFor' function.  It "caches" the result by going
  through a variable such as `pkgs_x86_64_linux', which is evaluated
  only once.  Evaluation now only takes 4.4s and 545 MiB on my
  machine.

  A cleaner solution may be to move the `system' argument outwards so
  that entire set of jobs is called only once for each value of
  `system'.

svn path=/nixpkgs/trunk/; revision=21966
2010-05-25 10:35:14 +00:00
Lluís Batlle i Rossell a51bbc1992 Adding libvpx (the codec VP8). Still no package uses it.
svn path=/nixpkgs/trunk/; revision=21958
2010-05-24 21:57:45 +00:00
Ludovic Courtès a57d897d94 cross-GNU: Choose a different package set.
svn path=/nixpkgs/trunk/; revision=21941
2010-05-21 15:07:54 +00:00
Ludovic Courtès 23d4be19b4 Have Hydra cross-build the `basic' package set for GNU/Hurd.
svn path=/nixpkgs/trunk/; revision=21937
2010-05-21 13:47:07 +00:00
Ludovic Courtès 41cc998fd4 Have Hydra cross-build Coreutils.
svn path=/nixpkgs/trunk/; revision=21936
2010-05-21 13:47:00 +00:00
Ludovic Courtès 0b2906ca28 Add cross Coreutils.
svn path=/nixpkgs/trunk/; revision=21935
2010-05-21 13:46:54 +00:00
Peter Simons 77430510ed pkgs/top-level/perl-packages.nix: fixed build of perl-Net-SMTP-SSL on Darwin
Thanks to David Brown for explaining how to do this.

svn path=/nixpkgs/trunk/; revision=21933
2010-05-21 08:44:44 +00:00
Eelco Dolstra 50712e5279 * Added miniupnpd, an implementation of the UPnP Internet Gateway
Device (IGD) specification.
* Updated iptables to 1.4.8.

svn path=/nixpkgs/trunk/; revision=21929
2010-05-20 22:11:44 +00:00
Ludovic Courtès 1fe9b4a3b1 GNU GSS: Add dependency on GNU Shishi.
svn path=/nixpkgs/trunk/; revision=21922
2010-05-20 13:00:30 +00:00
Ludovic Courtès a7adcf1e3f Have Hydra build the cross Hurd.
svn path=/nixpkgs/trunk/; revision=21917
2010-05-20 11:54:43 +00:00
Ludovic Courtès 012389b882 GNU Hurd: Add full cross build.
svn path=/nixpkgs/trunk/; revision=21916
2010-05-20 11:54:40 +00:00
Ludovic Courtès 430b98a7c1 Remove `migCross' top-level attribute.
svn path=/nixpkgs/trunk/; revision=21914
2010-05-20 11:54:31 +00:00
Eelco Dolstra 3dd55eef23 * Added aria2, a download utility.
svn path=/nixpkgs/trunk/; revision=21912
2010-05-20 11:11:24 +00:00
Eelco Dolstra 0fa66dac1c * Twisted updated to 10.0.0.
svn path=/nixpkgs/trunk/; revision=21909
2010-05-20 10:40:40 +00:00
Ludovic Courtès 63abc2ed86 GCC 4.5: Add support for a separate libpthread; rearrange target flags handling.
svn path=/nixpkgs/trunk/; revision=21905
2010-05-19 21:32:19 +00:00
Ludovic Courtès fc763b15eb hwloc 1.0.
svn path=/nixpkgs/trunk/; revision=21902
2010-05-19 21:30:37 +00:00
Ludovic Courtès e5571e9cd4 GNU Hurd: Add libpthread.
svn path=/nixpkgs/trunk/; revision=21900
2010-05-19 21:28:57 +00:00
Ludovic Courtès 2534ea88b1 GNU Hurd: Allow partial builds.
svn path=/nixpkgs/trunk/; revision=21899
2010-05-19 21:28:34 +00:00
Ludovic Courtès 5ecaa9ab32 GNU MIG: Move to `os-specific/gnu'.
svn path=/nixpkgs/trunk/; revision=21894
2010-05-19 21:27:53 +00:00
Ludovic Courtès eeba31dfc9 GNU MIG: Use the date as the version number; remove misguided cross stuff.
svn path=/nixpkgs/trunk/; revision=21893
2010-05-19 21:27:38 +00:00
Yury G. Kudryashov cc6ca8b2ae Add gnupg1 compatibility wrapper
Gnupg1compat is symlinked gnupg2 with two additional symlinks:
gpg->gpg2 and gpgv->gpgv2.

Move original gnupg 1.x to gnupg1orig.
Set default gnupg1 to gnupg1compat.

svn path=/nixpkgs/trunk/; revision=21888
2010-05-19 20:59:20 +00:00
Yury G. Kudryashov 6a0318fead Add libassuan1 back
opensc needs it

svn path=/nixpkgs/trunk/; revision=21887
2010-05-19 20:59:15 +00:00
Yury G. Kudryashov b7a54122ef Pass coreutils explicitly instead of using stdenv.coreutils
I hope that this fixes tarball creation for hydra

svn path=/nixpkgs/trunk/; revision=21886
2010-05-19 20:59:07 +00:00
Yury G. Kudryashov fd63f04e4e Remove gpg->gpg2 symlink
Also make gpgme compile&find gpg2

svn path=/nixpkgs/trunk/; revision=21885
2010-05-19 20:59:03 +00:00
Yury G. Kudryashov d0b56edcf2 Mass GnuPG upgrade
gnupg tests fail. Will try to fix later.

svn path=/nixpkgs/trunk/; revision=21884
2010-05-19 20:58:56 +00:00
Yury G. Kudryashov ea1953d744 Move gnupg to gnupg1 and gnupg2 to gnupg
Also add gnupg1-compatibility symlinks to gnupg2.
Most packages should be able to use gnupg2 instead of gnupg1.

svn path=/nixpkgs/trunk/; revision=21883
2010-05-19 20:58:47 +00:00
Yury G. Kudryashov 7751f8bd62 Upgrade pinentry to 0.8.0
Also add optional pinentry-qt4

svn path=/nixpkgs/trunk/; revision=21882
2010-05-19 20:58:35 +00:00
Eelco Dolstra f8a818bf20 * Remove a redundant version of ktorrent (it's already in
kde/extra-gear).

svn path=/nixpkgs/trunk/; revision=21876
2010-05-19 13:57:20 +00:00
Peter Simons 8d1637de33 pkgs/top-level/all-packages.nix, pkgs/applications/editors/emacs-23: prefer makeOverridable over getPkgConfig to customize GNU Emacs
Changed 'emacs23' expression to allow for argument overriding instead of
relying on getPkgConfig. While I was at it, I also simplified the actual build
expression a bit.

svn path=/nixpkgs/trunk/; revision=21873
2010-05-19 12:26:21 +00:00
Peter Simons 3353ed9c88 pkgs/top-level/all-packages.nix, pkgs/tools/networking/openssh: prefer makeOverridable over getPkgConfig to customize openssh
Changed 'openssh' expression to allow for argument overriding instead of
relying on getPkgConfig. While I was at it, I also simplified the build
expression a bit.

svn path=/nixpkgs/trunk/; revision=21868
2010-05-19 12:26:06 +00:00
Peter Simons 3104ba89de pkgs/top-level/all-packages.nix: prefer makeOverridable over getPkgConfig to customize pdsh
Changed 'pdsh' expression to allow for argument overriding instead of relying
on getPkgConfig.

svn path=/nixpkgs/trunk/; revision=21867
2010-05-19 12:26:00 +00:00
Peter Simons 2508c95763 pkgs/top-level/all-packages.nix: prefer makeOverridable over getPkgConfig to customize distcc
Changed 'distcc' expression to allow for argument overriding instead of relying
on getPkgConfig.

svn path=/nixpkgs/trunk/; revision=21866
2010-05-19 12:25:57 +00:00
Peter Simons 7f0dc973f4 pkgs/top-level/all-packages.nix: prefer makeOverridable over getConfig to customize libc version
Previously, the getConfig variable 'brokenRedHatKernel' was used to switch back
to glibc 2.5, which fixes various run-time problems on Red Hat Linux. Now, the
same can be achieved by configuring

  {
    packageOverrides = pkgs:
    {
      glibc = pkgs.useFromStdenv "glibc" pkgs.glibc25;
    };
  }

in $NIXPKGS_CONFIG. Similarly, the argument 'installLocales' can be overridden
by setting:

  {
    packageOverrides = pkgs:
    {
      glibc = pkgs.useFromStdenv "glibc" (pkgs.glibc25.override { installLocales = true; });
    };
  }

svn path=/nixpkgs/trunk/; revision=21865
2010-05-19 12:25:54 +00:00
Peter Simons aa600ed8f7 pkgs/top-level/all-packages.nix: prefer makeOverridable over getPkgConfig to customize GNU plot
Changed 'gnuplot' expression to allow for argument overriding instead of
relying on getPkgConfig. While I was at it, I also simplified the actual build
expression a bit.

svn path=/nixpkgs/trunk/; revision=21864
2010-05-19 12:25:51 +00:00
Peter Simons d9c1f1b118 pkgs/top-level/all-packages.nix: prefer makeOverridable over getPkgConfig to customize ipmitool
Changed 'ipmitool' expression to allow for argument overriding instead of
relying on getPkgConfig.

svn path=/nixpkgs/trunk/; revision=21863
2010-05-19 12:25:48 +00:00
Peter Simons 9c812655ce pkgs/top-level/all-packages.nix: prefer makeOverridable over getPkgConfig to customize GNU Privacy Guard
Changed 'gnupg' and 'gnupg2' expressions to allow for argument overriding
instead of relying on getPkgConfig.

svn path=/nixpkgs/trunk/; revision=21862
2010-05-19 12:25:45 +00:00
Peter Simons fa9b6ef08d Fix ledger to compile with recent gcc.
Also makes ledger overridable.

svn path=/nixpkgs/trunk/; revision=21854
2010-05-19 07:50:45 +00:00
Michael Raskin e2736a0888 DMTX now needs libjasper.. pass that lib to dmtx
svn path=/nixpkgs/trunk/; revision=21852
2010-05-18 21:15:13 +00:00
Lluís Batlle i Rossell 84f61fadd1 OpenOffice.org update attempt to 3.2.0 - maybe it will work
I'll wait for the hydra report.

svn path=/nixpkgs/trunk/; revision=21850
2010-05-18 20:57:00 +00:00
Marc Weber 6361b3a682 adding ati-drivers There is still much to be done, see http://thread.gmane.org/gmane.linux.distributions.nixos/4145
svn path=/nixpkgs/trunk/; revision=21848
2010-05-18 19:36:55 +00:00
Peter Simons 5f36663ecc pkgs/top-level/perl-packages.nix: updated Digest-SHA1 to version 2.12
svn path=/nixpkgs/trunk/; revision=21837
2010-05-18 13:35:06 +00:00
Rob Vermaas a07cdd3b23 * added patchelf pre-release 0.6 until it gets stable
* updated chrome to latest version


svn path=/nixpkgs/trunk/; revision=21836
2010-05-18 12:36:23 +00:00
Rob Vermaas 6ab3528051 typo
svn path=/nixpkgs/trunk/; revision=21827
2010-05-18 08:39:31 +00:00
Rob Vermaas 29c68e4468 fix check of tarball
svn path=/nixpkgs/trunk/; revision=21826
2010-05-18 08:22:35 +00:00
Peter Simons cbc19490b9 Add Xfce Terminal emulator.
Adds the terminal emulator, and the libraries that it depends upon.

svn path=/nixpkgs/trunk/; revision=21820
2010-05-17 16:16:39 +00:00
Marc Weber aebfa8548f Revert "update wmii. libixp vanished"
The new wmii has some wired behaviour:
- When you move windows the curser location changes.
  Until the window manager has changed that location movement of mouse is
  ignored.
- window do not always popup in the col which was focused.
- wmiimenu broke

old wmii does not build with newer libixp

Until I know how to fix those issues I'll revert my update

This reverts -r 21683

svn path=/nixpkgs/trunk/; revision=21816
2010-05-17 13:35:38 +00:00
Peter Simons 71f164ac1e Three Games and Perl Support for Irssi
Here are four patches. Three of them add expressions for games. The
fourth, irssi-perl.patch, adds perl as an input for irssi, so that one
can run perl plugins in irssi. I didn't make the perl input optional,
but maybe it should be to keep the irssi expression light.

svn path=/nixpkgs/trunk/; revision=21813
2010-05-17 09:21:42 +00:00
Lluís Batlle i Rossell 0dc24d9f04 Disabling tests on two perl packages, whose tests related to network
failed on chroot builds.
That should allow hydra to build git.

(Thanks to David Brown)

svn path=/nixpkgs/trunk/; revision=21812
2010-05-17 06:47:52 +00:00
Lluís Batlle i Rossell 70302d2d18 Adding inputs to privoxy, so it gets more features (zlib, documentation, pcre)
svn path=/nixpkgs/trunk/; revision=21809
2010-05-16 22:14:02 +00:00
Alexander Tsamutali 03d8babdf5 applications/editors/emacs-modes/jabber: New nixbuild.
svn path=/nixpkgs/trunk/; revision=21806
2010-05-16 20:32:21 +00:00
Lluís Batlle i Rossell a286b7c9b2 Adding tor 0.2.1.26
(Patch sent by roconnor)

svn path=/nixpkgs/trunk/; revision=21797
2010-05-16 16:23:32 +00:00
Lluís Batlle i Rossell 4df5343e78 Adding x2x.
Patch by Oleksandr Kozachuk

svn path=/nixpkgs/trunk/; revision=21796
2010-05-16 16:23:17 +00:00
Yury G. Kudryashov ff03fa4511 Upgrade lvm2
svn path=/nixpkgs/trunk/; revision=21791
2010-05-15 18:43:10 +00:00
Yury G. Kudryashov 6edea62ea5 make freetype overridable
svn path=/nixpkgs/trunk/; revision=21790
2010-05-15 17:07:46 +00:00
Peter Simons 39b2ec2488 Fix git-send-email.
git-send-email depends on Net::SMTP and Net::SMTP::SSL.  Make
sendEmailSupport a config for git, and bring these libraries.  Wrap
the send-email script, or replace with a not supported script.

svn path=/nixpkgs/trunk/; revision=21789
2010-05-15 10:38:28 +00:00
Yury G. Kudryashov 062c48db4b Start migrating to polkit-0.9.6
svn path=/nixpkgs/trunk/; revision=21786
2010-05-15 09:55:15 +00:00
Yury G. Kudryashov 9c7c6a9202 consolekit-0.4.1
svn path=/nixpkgs/trunk/; revision=21783
2010-05-15 09:54:50 +00:00
Yury G. Kudryashov 52c65a1e62 Add rekonq browser (both 0.4.0 and latest git)
svn path=/nixpkgs/trunk/; revision=21779
2010-05-15 09:47:32 +00:00