Michael Raskin
6cd4db5496
Use the same qt4 for psi as for the used qca2
...
svn path=/nixpkgs/trunk/; revision=22918
2010-08-03 08:42:28 +00:00
Michael Raskin
50f2d32ce9
Use updated QCA2 for psi
...
svn path=/nixpkgs/trunk/; revision=22914
2010-08-03 07:39:56 +00:00
Michael Raskin
a7adc46a3b
Update parts of QCA to build with fresher OpenSSL
...
svn path=/nixpkgs/trunk/; revision=22913
2010-08-03 07:35:29 +00:00
Lluís Batlle i Rossell
de5e1de89b
Fixing the dynamic linker in the gcc-cross-wrapper so it takes also the dynamic
...
linker of glibc on mips (specifically ld.so.1, and not ld-*.so.? as we had before)
svn path=/nixpkgs/trunk/; revision=22912
2010-08-02 22:44:41 +00:00
Lluís Batlle i Rossell
4b42d5f7a9
Fixing the openssl 1.0.0 cross build
...
svn path=/nixpkgs/trunk/; revision=22910
2010-08-02 22:10:42 +00:00
Yury G. Kudryashov
aadea685af
Restrict qt-4.7 to linux only
...
svn path=/nixpkgs/trunk/; revision=22909
2010-08-02 21:47:28 +00:00
Yury G. Kudryashov
858ce6dfd9
Remove smbfsFuse from release.nix, use meta.platforms instead
...
svn path=/nixpkgs/trunk/; revision=22908
2010-08-02 21:43:53 +00:00
Yury G. Kudryashov
fd7bcca52e
all-packages: remove trailing spaces
...
svn path=/nixpkgs/trunk/; revision=22907
2010-08-02 21:40:34 +00:00
Michael Raskin
ef3606a0ae
Update XNeur to 0.9.9
...
svn path=/nixpkgs/trunk/; revision=22906
2010-08-02 19:28:15 +00:00
Michael Raskin
fb10fb0d19
Fix sed commands for xneur 0.8 build
...
svn path=/nixpkgs/trunk/; revision=22905
2010-08-02 19:24:59 +00:00
Michael Raskin
0dfe4c37ed
Fix SBCL build
...
svn path=/nixpkgs/trunk/; revision=22903
2010-08-02 19:02:47 +00:00
Eelco Dolstra
7e453a7491
* Fix breakage in r22897.
...
svn path=/nixpkgs/trunk/; revision=22901
2010-08-02 17:59:19 +00:00
Yury G. Kudryashov
a162c597e1
akonadi-1.4.0
...
svn path=/nixpkgs/trunk/; revision=22898
2010-08-02 17:20:40 +00:00
Yury G. Kudryashov
dea41a12ea
Add rsibreak
...
svn path=/nixpkgs/trunk/; revision=22897
2010-08-02 17:19:44 +00:00
Yury G. Kudryashov
230c31d020
Really make qt-4.7
...
svn path=/nixpkgs/trunk/; revision=22896
2010-08-02 17:18:56 +00:00
Yury G. Kudryashov
2d998d8fc3
Add kdebindings-4.4.95
...
svn path=/nixpkgs/trunk/; revision=22895
2010-08-02 17:18:23 +00:00
Yury G. Kudryashov
c21bd4a0c6
Add kdepimlibs
...
svn path=/nixpkgs/trunk/; revision=22894
2010-08-02 17:17:41 +00:00
Yury G. Kudryashov
1e095067cc
kdelibs-4.4.95: fix python install dir
...
svn path=/nixpkgs/trunk/; revision=22893
2010-08-02 17:17:06 +00:00
Yury G. Kudryashov
ea891200d8
kde-4.5 snapshot
...
svn path=/nixpkgs/trunk/; revision=22892
2010-08-02 17:16:24 +00:00
Yury G. Kudryashov
5245e8f885
small fixes, kdepimlibs, oxygen-icons
...
svn path=/nixpkgs/trunk/; revision=22891
2010-08-02 17:14:59 +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
Sander van der Burg
1e9dc2b254
It seems that lib.zip is already taken from attributesets, therefore renaming it to zipTwoLists
...
svn path=/nixpkgs/trunk/; revision=22887
2010-08-02 16:48: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
Sander van der Burg
beee6e5e1d
Moved 'zip' function from nixos/lib/build-vms.nix
...
svn path=/nixpkgs/trunk/; revision=22882
2010-08-02 16:10:01 +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
Peter Simons
9ef0f1b935
pkgs/tools/networking/nbd: install the README file to $out/share/doc
...
The README contains documentation that is useful in addition to the man
pages.
svn path=/nixpkgs/trunk/; revision=22875
2010-08-02 13:37:36 +00:00
Rob Vermaas
c8d53236b1
svn path=/nixpkgs/trunk/; revision=22874
2010-08-02 12:55:54 +00:00
Rob Vermaas
13cf7b0ade
svn path=/nixpkgs/trunk/; revision=22872
2010-08-02 12:13:03 +00:00
Michael Raskin
76cef7e1b2
Set HOME for SBCL tests
...
svn path=/nixpkgs/trunk/; revision=22870
2010-08-02 11:37:23 +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
Michael Raskin
21580dc847
Update Wine
...
svn path=/nixpkgs/trunk/; revision=22866
2010-08-02 10:02:23 +00:00
Michael Raskin
5892d8ffc7
Update sbcl
...
svn path=/nixpkgs/trunk/; revision=22865
2010-08-02 09:57:12 +00:00
Rob Vermaas
ec5dba7620
remove commented license attribute
...
svn path=/nixpkgs/trunk/; revision=22862
2010-08-02 09:09:25 +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
00c972ac7d
svn path=/nixpkgs/trunk/; revision=22839
2010-08-01 15:14:33 +00:00
Eelco Dolstra
f1b8c40eb4
* Updated libogg and libvorbis.
...
svn path=/nixpkgs/trunk/; revision=22838
2010-08-01 14:33:43 +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
59a8bc0744
qt-4.7.0-beta2: fool phonon version
...
Qt guys updated source files but not version number
svn path=/nixpkgs/trunk/; revision=22833
2010-07-31 13:05:46 +00:00
Yury G. Kudryashov
d15fdc71f0
trailing spaces
...
svn path=/nixpkgs/trunk/; revision=22832
2010-07-31 13:05:22 +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
Lluís Batlle i Rossell
8eceafc755
Fixing the name of 'confuse'; now it includes the version.
...
svn path=/nixpkgs/trunk/; revision=22829
2010-07-30 17:42:52 +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
Marco Maggesi
7835419d8a
Upgrade fossil to version 2010-07-03
...
svn path=/nixpkgs/trunk/; revision=22827
2010-07-30 14:03:51 +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
ad1c77118f
Updating the linux headers for 2.6.32 to a newer 2.6.32
...
svn path=/nixpkgs/trunk/; revision=22811
2010-07-29 14:38:52 +00:00
Lluís Batlle i Rossell
5cf5a154db
Updating hugin
...
svn path=/nixpkgs/trunk/; revision=22810
2010-07-29 14:38:46 +00:00
Lluís Batlle i Rossell
79dec6e9a7
Adding Vigra
...
svn path=/nixpkgs/trunk/; revision=22809
2010-07-29 14:38:39 +00:00
Sander van der Burg
aaff5b7a46
Bumped eigen library to version 2.0.15
...
svn path=/nixpkgs/trunk/; revision=22808
2010-07-29 13:14:51 +00:00
Sander van der Burg
50fa8c9b86
googled + added a patch to fix compilation of kdelibs-3.5.10 against openssl-1.0.0 (yes I still need this)
...
svn path=/nixpkgs/trunk/; revision=22807
2010-07-29 12:26:59 +00:00
Sander van der Burg
bfbdc2db7c
Stole a patch from gentoo to fix the compilation of libmsn against OpenSSL-1.0.0
...
svn path=/nixpkgs/trunk/; revision=22805
2010-07-29 09:41:29 +00:00
Eelco Dolstra
370f15acf3
* qemu-kvm 0.12.5.
...
svn path=/nixpkgs/trunk/; revision=22804
2010-07-29 08:41:25 +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
Peter Simons
4b248a36b0
pkgs/tools/networking/nbd: updated to version 2.9.15
...
svn path=/nixpkgs/trunk/; revision=22799
2010-07-28 21:28:23 +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
27fe0c57f3
pkgs/development/python-modules/pycrypto: enable building of this package on all GNU platforms
...
svn path=/nixpkgs/trunk/; revision=22794
2010-07-28 13:10:18 +00:00
Peter Simons
12943b6a3e
pkgs/development/python-modules/pycrypto: downgrade to 2.0.1
...
The download sites for 2.1.0 all appear to be offline.
svn path=/nixpkgs/trunk/; revision=22793
2010-07-28 13:09:44 +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
60026c0a32
pkgs/development/libraries/crypto++: added todo note about removing cryptotest.exe from the installed image
...
svn path=/nixpkgs/trunk/; revision=22790
2010-07-28 13:08:49 +00:00
Peter Simons
66b8ff8e0c
pkgs/development/python-modules/pycrypto: updated homepage and download URL to use http://www.pycrypto.org/
...
svn path=/nixpkgs/trunk/; revision=22789
2010-07-28 13:07:48 +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
93b18ceb30
pkgs/development/python-modules/generic: parameterize build/install command
...
The generic 'buildPythonPackage' function used to use the build/install command
"easy_install" unconditionally. That didn't work for python-numpy, for
instance, because the package wants "setup.py" run with additional parameters
to determine the fortran compiler of choice. The newly introduced function
argument 'installCommand' allows to implement this. By passing that parameter,
the default build command can be overridden.
svn path=/nixpkgs/trunk/; revision=22786
2010-07-28 13:05:04 +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
Eelco Dolstra
b4a3f99c78
* Remove orphaned/obsolete packages.
...
svn path=/nixpkgs/trunk/; revision=22781
2010-07-28 09:43:03 +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
Eelco Dolstra
95c5f85819
* Fix misspelled package name.
...
svn path=/nixpkgs/trunk/; revision=22777
2010-07-28 08:21:56 +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
4e872b84ee
pyOpenSSL: updated to version 0.10
...
svn path=/nixpkgs/trunk/; revision=22773
2010-07-27 23:52:14 +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
Rob Vermaas
15cb365b1d
make nix-prefetch-hg executable
...
svn path=/nixpkgs/trunk/; revision=22755
2010-07-27 16:32:51 +00:00
Lluís Batlle i Rossell
2c9cdbb8f2
Revert "Version update for vxl", because:
...
- Although the file for 1.14 is in the upstream file repository, it's not
published in their web, which still talks about 1.13 for the stable release.
- The cmake files comming with this vxl fail (because of some weird dependency
on a doxygen.cmake file)
This reverts commit 22577
svn path=/nixpkgs/trunk/; revision=22750
2010-07-27 15:57:01 +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
3c57f1fd8a
* Fix zlib 1.2.5 on Cygwin. (The Makefile doesn't support building
...
just a static library.)
svn path=/nixpkgs/trunk/; revision=22748
2010-07-27 11:37:29 +00:00
Eelco Dolstra
42016ca6aa
* Firefox 3.6.8.
...
svn path=/nixpkgs/trunk/; revision=22747
2010-07-27 11:35:31 +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
Armijn Hemel
be0a49f551
update to 2.6.10, still haven't had time to dig into the gimpfu Python import problems
...
svn path=/nixpkgs/trunk/; revision=22731
2010-07-25 12:49:03 +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
Armijn Hemel
066bd72e6f
update to 2.7.2
...
svn path=/nixpkgs/trunk/; revision=22729
2010-07-25 11:10:10 +00:00
Eelco Dolstra
e6ff6558d6
* xrandr 1.3.3.
...
svn path=/nixpkgs/branches/x-updates/; revision=22727
2010-07-25 09:14:12 +00:00
Eelco Dolstra
4a6eb1183e
* On x86_64-darwin, "./config" misdetects the system as
...
"darwin-i386-cc" (http://hydra.nixos.org/build/498076 ). So specify
the system type explicitly.
svn path=/nixpkgs/branches/x-updates/; revision=22726
2010-07-25 09:09:32 +00:00
Eelco Dolstra
9b87ffa522
* Make mutt build against OpenSSL 1.0.0.
...
svn path=/nixpkgs/branches/x-updates/; revision=22724
2010-07-24 08:50:30 +00:00
Eelco Dolstra
3587a2f78e
* Doh.
...
svn path=/nixpkgs/branches/x-updates/; revision=22723
2010-07-23 15:36:35 +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
Eelco Dolstra
c33bdf500a
* bluez updated to 4.69.
...
svn path=/nixpkgs/branches/x-updates/; revision=22721
2010-07-23 14:57:28 +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
Ludovic Courtès
e4df0cab9f
cpio: Disable tests on Darwin.
...
svn path=/nixpkgs/trunk/; revision=22713
2010-07-22 15:27:48 +00:00
Eelco Dolstra
b33d41ef08
* clutter-gtk updated to 0.10.4 so that it builds against the current
...
GTK+ (http://hydra.nixos.org/build/495170 ).
svn path=/nixpkgs/branches/x-updates/; revision=22711
2010-07-22 14:08:44 +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
ea14f111dd
* Chatzilla updated to 0.9.86.
...
svn path=/nixpkgs/branches/x-updates/; revision=22706
2010-07-22 12:59:12 +00:00
Ludovic Courtès
8115040c08
GNU cpio: Add fix for Darwin.
...
svn path=/nixpkgs/trunk/; revision=22705
2010-07-22 12:20:11 +00:00
Sander van der Burg
ed3640e9de
Upgraded MySQL java connector to 5.1.13
...
svn path=/nixpkgs/trunk/; revision=22703
2010-07-22 10:54:34 +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
Eelco Dolstra
6faed26c43
* nmap: apply a patch to remove md2 support.
...
svn path=/nixpkgs/branches/x-updates/; revision=22701
2010-07-22 10:31:39 +00:00
Eelco Dolstra
0e6ea04477
* Update Ruby to 1.8.7-p299 to fix a build problem caused by the
...
upgrade to OpenSSL 1.0.0
(http://hydra.nixos.org/build/494496/nixlog/1/raw ).
svn path=/nixpkgs/branches/x-updates/; revision=22700
2010-07-22 09:49:48 +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
80bcec77ec
libevent 1.4.14b.
...
svn path=/nixpkgs/trunk/; revision=22697
2010-07-22 09:02:13 +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
Eelco Dolstra
ab0d010869
* Udev updated to 160.
...
svn path=/nixpkgs/branches/x-updates/; revision=22688
2010-07-21 12:02:12 +00:00
Eelco Dolstra
2f6c7cd3dd
* Latest pciutils and usbutils, along with the latest PCI and USB IDs.
...
svn path=/nixpkgs/branches/x-updates/; revision=22687
2010-07-21 12:01:57 +00:00
David Guibert
3d6c9cfd7f
firefox: should be sha1
...
svn path=/nixpkgs/trunk/; revision=22686
2010-07-21 11:55:33 +00:00
Eelco Dolstra
df7091a4a1
* libpciaccess 0.12.0.
...
svn path=/nixpkgs/branches/x-updates/; revision=22684
2010-07-21 11:29:26 +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
7f3838c16a
* Firefox 3.6.7, Thunderbird 3.1.1.
...
svn path=/nixpkgs/trunk/; revision=22682
2010-07-21 08:15:52 +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
37f6612875
* Disable GRUB 2's `make check' by default, because it requires QEMU.
...
It's not so desirable to have GRUB 2 depend on X11, Mesa, SDL,
PulseAudio, ... (I became very confused when changing Mesa triggered
a rebuild of GRUB.)
svn path=/nixpkgs/branches/x-updates/; revision=22680
2010-07-20 19:22:02 +00:00
Peter Simons
cc6c486560
pkgs/applications/editors/emacs-modes/haskell: updated to version 2.7.0
...
svn path=/nixpkgs/trunk/; revision=22679
2010-07-20 14:53:35 +00:00
Eelco Dolstra
0f53a3fca8
* Ignore missing directories in the <includedir> element. This allows
...
the NixOS system bus configuration to include directories such as
/nix/var/nix/profiles/default/etc/dbus-1/system.d/
which may not exist.
svn path=/nixpkgs/branches/x-updates/; revision=22672
2010-07-20 12:53:07 +00:00
Eelco Dolstra
cb11b171d1
svn path=/nixpkgs/branches/x-updates/; revision=22671
2010-07-20 07:58:36 +00:00
Eelco Dolstra
488f36ef19
* Apply a patch to make kdebindings build with the current sip.
...
svn path=/nixpkgs/branches/x-updates/; revision=22670
2010-07-19 23:24:37 +00:00
Eelco Dolstra
cceb5bcf80
* Work around (temporarily?) broken URL.
...
svn path=/nixpkgs/branches/x-updates/; revision=22669
2010-07-19 23:24:16 +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
7d963c8bb3
* By default, OpenSSL on 64-bit platforms now installs libraries in
...
$out/lib64, which is not what we want.
svn path=/nixpkgs/branches/x-updates/; revision=22661
2010-07-19 10:27:46 +00:00
Eelco Dolstra
5ebeb68c72
* Update the imake patch.
...
svn path=/nixpkgs/branches/x-updates/; revision=22660
2010-07-19 10:18:06 +00:00
Eelco Dolstra
0d225fb86a
* Support *.pc.in files that are not in the top directory of the package.
...
svn path=/nixpkgs/branches/x-updates/; revision=22659
2010-07-19 08:59:05 +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
fbf2ed6067
* Remove MD2 support from Heimdal because OpenSSL 1.0.0 no longer has
...
it. See also
2a842e90d3
svn path=/nixpkgs/branches/x-updates/; revision=22657
2010-07-19 08:39:02 +00:00
Eelco Dolstra
ee182f843f
* Urgh, riverbankcomputing.co.uk constantly removed old releases. We
...
should mirror them.
svn path=/nixpkgs/branches/x-updates/; revision=22656
2010-07-19 08:25:09 +00:00
Eelco Dolstra
cb4a883683
* Update libxml2 to 2.7.7. This is necessary because of the zlib
...
update - xsltproc segfaults otherwise. (From the release notes:
"libxml violates the zlib interface and crashes".)
svn path=/nixpkgs/branches/x-updates/; revision=22655
2010-07-19 08:17:42 +00:00
Eelco Dolstra
1df1f9faac
* Debian 5.0.5.
...
svn path=/nixpkgs/trunk/; revision=22654
2010-07-19 07:55:18 +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
Eelco Dolstra
962276dd49
* dbus-glib updated to 0.86.
...
svn path=/nixpkgs/branches/x-updates/; revision=22651
2010-07-18 23:22:20 +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
d514ac437a
* Dbus updated to 1.2.24.
...
svn path=/nixpkgs/branches/x-updates/; revision=22646
2010-07-18 22:00:40 +00:00
Eelco Dolstra
26521d42e2
* gtkLibs218 updated (glib-2.22.5, gtk+-2.18.9).
...
svn path=/nixpkgs/branches/x-updates/; revision=22645
2010-07-18 21:56:12 +00:00
Eelco Dolstra
02d85d19a2
* Fontconfig updated to 2.8.0.
...
svn path=/nixpkgs/branches/x-updates/; revision=22644
2010-07-18 21:55:31 +00:00
Eelco Dolstra
70ab33568d
* Cairo updated to 1.8.10.
...
svn path=/nixpkgs/branches/x-updates/; revision=22643
2010-07-18 21:55:12 +00:00
Eelco Dolstra
65d9c03c9a
* libdrm updated to 2.4.21.
...
svn path=/nixpkgs/branches/x-updates/; revision=22642
2010-07-18 21:54:57 +00:00
Eelco Dolstra
6b79040a0b
* libpng updated to 1.2.44.
...
svn path=/nixpkgs/branches/x-updates/; revision=22641
2010-07-18 21:54:42 +00:00
Eelco Dolstra
964c3d351f
* libtiff updated to 3.9.4.
...
svn path=/nixpkgs/branches/x-updates/; revision=22640
2010-07-18 21:54:28 +00:00
Eelco Dolstra
d06a183365
* OpenSSL updated to 1.0.0a.
...
svn path=/nixpkgs/branches/x-updates/; revision=22639
2010-07-18 21:54:14 +00:00
Eelco Dolstra
ef8bf2b077
* FreeType updated to 2.4.1. Note that the bytecode interpreter
...
patent has expired, so TT_CONFIG_OPTION_BYTECODE_INTERPRETER is now
the default. Whether it looks better now is subjective.
svn path=/nixpkgs/branches/x-updates/; revision=22638
2010-07-18 21:53:58 +00:00
Eelco Dolstra
b7324318cf
* zlib updated to 1.2.5.
...
svn path=/nixpkgs/branches/x-updates/; revision=22637
2010-07-18 21:52:39 +00:00
Eelco Dolstra
32a8fbde4f
* CUPS updated to 1.4.4.
...
svn path=/nixpkgs/branches/x-updates/; revision=22636
2010-07-18 21:52:25 +00:00
Eelco Dolstra
8acd56744f
* HAL updated to 0.5.14.
...
svn path=/nixpkgs/branches/x-updates/; revision=22635
2010-07-18 21:52:10 +00:00
Eelco Dolstra
e0dd4232e1
* libjpeg updated to v8b.
...
svn path=/nixpkgs/branches/x-updates/; revision=22634
2010-07-18 21:51:53 +00:00
Eelco Dolstra
8e168422fb
* xkeyboard-config updated to 1.9.
...
svn path=/nixpkgs/branches/x-updates/; revision=22633
2010-07-18 21:51:33 +00:00
Eelco Dolstra
662600c241
* Updated various X.org packages, including libX11.
...
svn path=/nixpkgs/branches/x-updates/; revision=22632
2010-07-18 21:51:13 +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
Eelco Dolstra
113fa71b8c
* curl updated to 7.21.0.
...
svn path=/nixpkgs/trunk/; revision=22629
2010-07-18 21:01:17 +00:00
Eelco Dolstra
5a7e3c70ce
* NVIDIA driver: updated to 256.35. Unfortunately the unpacked driver
...
now has a flat directory structure (i.e. usr/lib, usr/share etc. are
gone), which makes installing everything in the right location
rather more tedious.
svn path=/nixpkgs/trunk/; revision=22628
2010-07-18 20:21:18 +00:00
Andres Löh
5bd2be1d12
Version bump for regular library (Haskell).
...
svn path=/nixpkgs/trunk/; revision=22626
2010-07-18 18:29:05 +00:00
Lluís Batlle i Rossell
ff9455f41a
Updating homebank
...
svn path=/nixpkgs/trunk/; revision=22625
2010-07-18 09:19:16 +00:00
Ludovic Courtès
7da94088c8
Geeqie 1.0.
...
svn path=/nixpkgs/trunk/; revision=22624
2010-07-17 22:40:41 +00:00
Yury G. Kudryashov
2e93e5e453
bump yakuake to 2.9.7
...
svn path=/nixpkgs/trunk/; revision=22623
2010-07-17 22:15:28 +00:00
Yury G. Kudryashov
960a0ad747
kdesupport for kde-4.5
...
svn path=/nixpkgs/trunk/; revision=22622
2010-07-17 22:14:54 +00:00
Yury G. Kudryashov
d0de407886
SDO-0.5
...
svn path=/nixpkgs/trunk/; revision=22621
2010-07-17 22:11:59 +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