Rob Vermaas
9308f0465f
set meta.platforms to get rid of hydra evaluation errors (assertions)
...
svn path=/nixpkgs/trunk/; revision=20300
2010-03-01 12:21:12 +00:00
Rob Vermaas
0fd4468570
acct: updated hash
...
svn path=/nixpkgs/trunk/; revision=20299
2010-03-01 12:11:12 +00:00
Rob Vermaas
895ec201d3
yate2: updated hash
...
svn path=/nixpkgs/trunk/; revision=20298
2010-03-01 12:09:05 +00:00
Lluís Batlle i Rossell
b7abafeedc
Adding a new python package to allow calibre preview the books
...
svn path=/nixpkgs/trunk/; revision=20292
2010-02-28 22:55:08 +00:00
Lluís Batlle i Rossell
30a9cbf018
Updating calibre (I had to add a new python package for it: cssutils)
...
svn path=/nixpkgs/trunk/; revision=20291
2010-02-28 22:42:39 +00:00
Michael Raskin
01d5ec596b
Some more optional features for Vim
...
svn path=/nixpkgs/trunk/; revision=20288
2010-02-28 17:54:41 +00:00
Lluís Batlle i Rossell
ef1918f200
Allowing the kernel to build in the sheevaplug natively.
...
svn path=/nixpkgs/trunk/; revision=20284
2010-02-28 08:58:07 +00:00
Lluís Batlle i Rossell
18f667a954
I missed in release.nix the sheevaplug platform.
...
svn path=/nixpkgs/trunk/; revision=20282
2010-02-27 22:10:36 +00:00
Lluís Batlle i Rossell
89842675cb
Adding more cross build jobs for hydra. Kernels, gdb, mipsel, ultrasparc.
...
svn path=/nixpkgs/trunk/; revision=20281
2010-02-27 21:56:27 +00:00
Lluís Batlle i Rossell
289d728337
Fixing the kernel expressions to allow normal and cross-building, depending
...
on the native and cross platforms.
I thought I already did that today in a previous commit, but I did all wrong.
svn path=/nixpkgs/trunk/; revision=20280
2010-02-27 21:48:48 +00:00
Lluís Batlle i Rossell
305a7a2ddf
More testing allows fixing more errors from the recent commits.
...
svn path=/nixpkgs/trunk/; revision=20279
2010-02-27 21:21:20 +00:00
Lluís Batlle i Rossell
4677180b0d
Barf. I have to test the expressions before commiting.
...
svn path=/nixpkgs/trunk/; revision=20278
2010-02-27 20:37:58 +00:00
Lluís Batlle i Rossell
81b325b33f
Adding a cross compiler condition for sparc64 due to a gcc bug
...
svn path=/nixpkgs/trunk/; revision=20277
2010-02-27 20:29:39 +00:00
Lluís Batlle i Rossell
8cf1f739e2
Fixing the cross-glibc soft float case.
...
svn path=/nixpkgs/trunk/; revision=20276
2010-02-27 20:02:21 +00:00
Lluís Batlle i Rossell
3b747e92e5
Fixing the correct handling of uboot in the initrd and the kernel derivations.
...
(nixos on sheevaplug)
svn path=/nixpkgs/trunk/; revision=20275
2010-02-27 18:51:06 +00:00
Lluís Batlle i Rossell
11aa65c28a
Simplified much more the expressions for cross building and multiplatform.
...
I introduce the new nixpkgs parameter "platform", defaulting to "pc",
which was before defined as an attribute of nixpkgs.
I made the crossSystem nixpkgs attribute set parameter contain its own 'platform'.
This allows cross-building a kernel for a given crossSystem.platform in a non-PC
platform.
The actual native platform can be taken from stdenv.platform, and this way we also
avoid the constant passing of 'platform' to packages for platform-dependant builds
(kernel, initrd, ...).
I will update nixos accordingly to these changes, for non-PC platforms to work.
I think we are gaining on flexibility and clearness. I could cross build succesfully
an ultrasparc kernel and a mipsel kernel on PC. But since this change, I should be able
to do this also in non-PC.
Before this change, there was no possibility of distinguishing the "target platform" or
the "native build platform" when cross building, being the single "platform" attribute
always interpreted as target platform.
The platform is a quite relevant attribute set, as it determines the linuxHeaders used
(in the case, by now the only one supported, of linux targets).
The platform attributes are quite linux centric still. Let's hope for more generality to come.
svn path=/nixpkgs/trunk/; revision=20273
2010-02-27 17:35:47 +00:00
Lluís Batlle i Rossell
fca769846a
Adding a new special attribute for mkDerivation: crossAttrs. It sits next to
...
"meta" and "passthru", and these attributes will be appended to the usual
mkDerivation attributes only if the package is cross built.
This allows putting some of the cross-building logic in the mkDerivation
nix parameters, and not only in the final builder script, as it was until now.
svn path=/nixpkgs/trunk/; revision=20272
2010-02-27 17:35:42 +00:00
Lluís Batlle i Rossell
5ca75ac276
Updating gdb
...
svn path=/nixpkgs/trunk/; revision=20271
2010-02-27 13:00:55 +00:00
Lluís Batlle i Rossell
8f2427c91a
Updating the actual platforms in platforms.nix to fit the new requirement:
...
kernelHeadersBaseConfig.
svn path=/nixpkgs/trunk/; revision=20270
2010-02-27 00:55:03 +00:00
Lluís Batlle i Rossell
b1b7266aa3
After some testing with an ultrasparc cross-compiler:
...
Updating the cross-build expressions, adding some flexibility.
Updated the linux headers used cross building, as 2.6.28 had bugs on endianness in
sparc64.
There were, as usual some bugs in gcc. Maybe not many make a cross compiler to
ultrasparc.
For the record, I could build an ultrasparc kernel with this base nix:
import /etc/nixos/nixpkgs/default.nix # The root nixpkgs default.nix
{
crossSystem = {
config = "sparc64-unknown-linux";
bigEndian = true;
arch = "sparc64";
float = "soft";
withTLS = true;
cpu = "ultrasparc";
};
config = pkgs: {
packageOverrides = pkgs : {
platform = {
name = "sparc64";
kernelHeadersBaseConfig = "sparc64_defconfig";
kernelBaseConfig = "sparc64_defconfig";
kernelArch = "sparc";
kernelAutoModules = false;
kernelTarget = "zImage";
uboot = null;
};
};
};
}
Although it did not boot directly in qemu-system-sparc64:
[sparc64] Kernel already loaded
Unhandled Exception 0x0000000000000020
PC = 0x0000000000404000 NPC = 0x0000000000404004
svn path=/nixpkgs/trunk/; revision=20269
2010-02-27 00:52:48 +00:00
Lluís Batlle i Rossell
72edd54741
Making digikam build with kdeedu, to get the marble widget working to geolocate photos.
...
svn path=/nixpkgs/trunk/; revision=20266
2010-02-26 10:41:53 +00:00
Michael Raskin
df0922aab7
Fix argument retrieval
...
svn path=/nixpkgs/trunk/; revision=20263
2010-02-26 07:14:11 +00:00
Michael Raskin
98c282d12b
Make Unicode support optional
...
svn path=/nixpkgs/trunk/; revision=20261
2010-02-26 07:02:18 +00:00
Sander van der Burg
a777402b21
Added library general public license (LGPL 2.0). Although LGPL 2.1 is almost the same, I want to be precise
...
svn path=/nixpkgs/trunk/; revision=20259
2010-02-25 15:44:28 +00:00
Eelco Dolstra
61c9c2434f
* Updated fbcondecor for Linux 2.6.33.
...
svn path=/nixpkgs/trunk/; revision=20257
2010-02-25 14:15:42 +00:00
Eelco Dolstra
280ba422b8
* Linux 2.6.32.9.
...
svn path=/nixpkgs/trunk/; revision=20255
2010-02-25 13:55:57 +00:00
Rob Vermaas
3e9de0fd12
* nixpkgs: added webalizer
...
svn path=/nixpkgs/trunk/; revision=20253
2010-02-25 13:30:34 +00:00
Rob Vermaas
e9404a5d83
* remove sawmill
...
svn path=/nixpkgs/trunk/; revision=20252
2010-02-25 13:28:36 +00:00
Michael Raskin
a45255dee9
Fix Chromium
...
svn path=/nixpkgs/trunk/; revision=20251
2010-02-25 13:22:51 +00:00
Sander van der Burg
05245ea055
Added licenses to the lib attributeset
...
svn path=/nixpkgs/trunk/; revision=20249
2010-02-25 13:09:08 +00:00
Sander van der Burg
680c80e0b4
Added initial licenses attributeset to specify meta.license attributes more concisely
...
svn path=/nixpkgs/trunk/; revision=20248
2010-02-25 13:06:17 +00:00
Michael Raskin
5b4f9b1e56
Update ECL
...
svn path=/nixpkgs/trunk/; revision=20247
2010-02-25 12:54:46 +00:00
Eelco Dolstra
e04c9a452a
* Linux 2.6.33.
...
svn path=/nixpkgs/trunk/; revision=20246
2010-02-25 12:40:03 +00:00
Ludovic Courtès
f07aa3d96d
GNUnet 0.8.1b.
...
svn path=/nixpkgs/trunk/; revision=20245
2010-02-25 10:31:36 +00:00
Rob Vermaas
c4332bb7a1
nix 0.15pre20231 as nixUnstable
...
svn path=/nixpkgs/trunk/; revision=20243
2010-02-25 10:01:33 +00:00
Lluís Batlle i Rossell
7d898c52df
Adding some important modules to the qemu versatile board and the sheevaplug,
...
mainly for nfsroot and nixos.
svn path=/nixpkgs/trunk/; revision=20238
2010-02-24 22:13:48 +00:00
Lluís Batlle i Rossell
eaf2e0f1fa
Trying to get nfsroot boot in versatile (simply adding kernel options for that)
...
svn path=/nixpkgs/trunk/; revision=20237
2010-02-24 20:35:14 +00:00
Lluís Batlle i Rossell
e668d2689e
Adding 'gt5', a diff-capable 'du' browser
...
svn path=/nixpkgs/trunk/; revision=20236
2010-02-24 19:06:25 +00:00
Michael Raskin
7ec7268649
Added Clozure CL
...
svn path=/nixpkgs/trunk/; revision=20211
2010-02-24 09:04:29 +00:00
Rob Vermaas
1ed9b2e7a4
update strategoxt 0.18pre version
...
svn path=/nixpkgs/trunk/; revision=20210
2010-02-24 08:50:59 +00:00
Lluís Batlle i Rossell
93ee9539e2
Made the RTC and the SCSI disks work on versatile.
...
svn path=/nixpkgs/trunk/; revision=20207
2010-02-23 22:41:16 +00:00
Michael Raskin
24614bdffe
Manually fix ecl-config. Not that we really care what it says, but it should not give unsuable flag set
...
svn path=/nixpkgs/trunk/; revision=20203
2010-02-23 21:32:16 +00:00
Michael Raskin
ecc14afbda
Roll back the changes to TeXLive. I failed to make Context work, and these changes made the situation worse
...
svn path=/nixpkgs/trunk/; revision=20202
2010-02-23 19:14:31 +00:00
Michael Raskin
f90ab6394b
Make Vim expression overridable
...
svn path=/nixpkgs/trunk/; revision=20201
2010-02-23 18:29:11 +00:00
Michael Raskin
9df96554ec
Make Vim source overridable and add ECL configuration information. Currently Vim with ECL support requires unofficial source package, like the one retrievable from http://repo.or.cz/w/vim_extended.git
...
svn path=/nixpkgs/trunk/; revision=20200
2010-02-23 18:10:42 +00:00
Armijn Hemel
68164d951e
update to 2.6.6
...
svn path=/nixpkgs/trunk/; revision=20199
2010-02-23 17:17:53 +00:00
Eelco Dolstra
a4d524eb8b
* Use ATerm 2.5 for Nix.
...
svn path=/nixpkgs/trunk/; revision=20197
2010-02-23 16:14:21 +00:00
Eelco Dolstra
7cbff16472
* This is not the real aterm 2.5 ;-)
...
svn path=/nixpkgs/trunk/; revision=20196
2010-02-23 16:05:46 +00:00
Marco Maggesi
99237e3da3
Updated nixpkgs/pkgs/os-specific/linux/dmtcp
...
svn path=/nixpkgs/trunk/; revision=20195
2010-02-23 16:00:37 +00:00
Eelco Dolstra
fe7b877afd
* The installed ATerm 2.5 headers refer to SIZEOF_LONG etc., which are
...
not set anywhere. This causes other packages to break on 64-bit
platforms unless they happen to define those macros. So don't rely
on them.
svn path=/nixpkgs/trunk/; revision=20194
2010-02-23 14:43:09 +00:00
Lluís Batlle i Rossell
a13774ecfe
Making opencascade build its visualization, DRAW, and WOK libraries/tools.
...
svn path=/nixpkgs/trunk/; revision=20193
2010-02-23 14:20:10 +00:00
Eelco Dolstra
70742ef6b1
svn path=/nixpkgs/trunk/; revision=20190
2010-02-23 12:49:14 +00:00
Eelco Dolstra
3f9cb1d9d2
* Build the Zabbix agent on other platforms.
...
svn path=/nixpkgs/trunk/; revision=20188
2010-02-23 12:17:23 +00:00
Michael Raskin
17c0e537e3
Fixing some mistakes in TeXLive expressions. Context still does not work, but in a more complicated way
...
svn path=/nixpkgs/trunk/; revision=20186
2010-02-23 10:52:19 +00:00
Lluís Batlle i Rossell
26c4567797
Making the integratorCP board boot. It still has no mmc support.
...
svn path=/nixpkgs/trunk/; revision=20184
2010-02-22 23:44:02 +00:00
Lluís Batlle i Rossell
5ec8e9cc7e
Removing mentions in all-packages to already removed expressions (old cross build)
...
svn path=/nixpkgs/trunk/; revision=20183
2010-02-22 23:43:29 +00:00
Michael Raskin
023ff2a74a
Fix some interpreter paths
...
svn path=/nixpkgs/trunk/; revision=20182
2010-02-22 23:40:39 +00:00
Michael Raskin
4b22e9d61d
Adding cfdg - context-free design grammar
...
svn path=/nixpkgs/trunk/; revision=20166
2010-02-22 10:46:49 +00:00
Lluís Batlle i Rossell
454fb58a39
Updating psi, so it builds with gcc 4.4
...
svn path=/nixpkgs/trunk/; revision=20165
2010-02-22 09:53:17 +00:00
Ludovic Courtès
913503155a
GNU Sharutils: Pass `gettext'; run the test suite.
...
svn path=/nixpkgs/trunk/; revision=20164
2010-02-22 09:52:39 +00:00
Ludovic Courtès
7abc6a6b7d
GNU Sharutils 4.8.
...
svn path=/nixpkgs/trunk/; revision=20163
2010-02-22 09:07:15 +00:00
Lluís Batlle i Rossell
fbb0906d14
Fixing a sourceforge url inside meshlab.
...
svn path=/nixpkgs/trunk/; revision=20162
2010-02-22 08:15:34 +00:00
Lluís Batlle i Rossell
ead553d9e5
Updating ddd, and adding a small patch for it to compile with gcc 4.4
...
svn path=/nixpkgs/trunk/; revision=20161
2010-02-22 08:08:29 +00:00
Lluís Batlle i Rossell
75e0d28624
Updating upx - now it builds with gcc 4.4
...
svn path=/nixpkgs/trunk/; revision=20160
2010-02-22 08:08:23 +00:00
Michael Raskin
5c8272b0bc
Adding asymptote graphic generation tool
...
svn path=/nixpkgs/trunk/; revision=20158
2010-02-21 17:36:41 +00:00
Alexander Tsamutali
2b78535ef9
applications/misc/xmobar: Added UTF8 and XFT support.
...
svn path=/nixpkgs/trunk/; revision=20156
2010-02-21 15:49:44 +00:00
Alexander Tsamutali
618c0f040a
development/libraries/haskell/X11-xft: New nixpkg.
...
svn path=/nixpkgs/trunk/; revision=20155
2010-02-21 15:45:13 +00:00
Lluís Batlle i Rossell
40985548d1
Merging from Oleksandr:
...
Updating some gnome packages and pigz.
svn path=/nixpkgs/trunk/; revision=20154
2010-02-21 12:25:36 +00:00
Lluís Batlle i Rossell
bc939a87b4
More platform updates - the serial line in integratorcp kernel still does
...
not work for me, nevertheless.
svn path=/nixpkgs/trunk/; revision=20153
2010-02-21 12:24:50 +00:00
Alexander Tsamutali
8c82537f9a
applications/misc/sakura: New nixpkg.
...
svn path=/nixpkgs/trunk/; revision=20152
2010-02-21 11:36:49 +00:00
Michael Raskin
ea7c7d1932
Update TeXLive packages w.r.t. TeXLive2009 texmf vs. prefix layout
...
svn path=/nixpkgs/trunk/; revision=20151
2010-02-21 10:31:21 +00:00
Michael Raskin
6c9bc8bf6d
Update Perl MakeMaker. Newer version at least can be built...
...
svn path=/nixpkgs/trunk/; revision=20149
2010-02-21 09:16:04 +00:00
Michael Raskin
bfc5bc58e7
Fix missing include
...
svn path=/nixpkgs/trunk/; revision=20148
2010-02-21 08:24:00 +00:00
Michael Raskin
2ced6cbbec
Fix function naming conflict in gnuchess
...
svn path=/nixpkgs/trunk/; revision=20147
2010-02-21 08:15:14 +00:00
Michael Raskin
2b937b1a47
Fix function naming conflict in bsdgames
...
svn path=/nixpkgs/trunk/; revision=20146
2010-02-21 08:11:17 +00:00
Michael Raskin
1966b6bde5
Remove erroneous mkDerivation
...
svn path=/nixpkgs/trunk/; revision=20145
2010-02-21 07:34:50 +00:00
Michael Raskin
95c065f33f
Find some mirror for ArkPandora
...
svn path=/nixpkgs/trunk/; revision=20144
2010-02-21 07:20:26 +00:00
Michael Raskin
ed1c9cefdd
Remove xcolor documentation until I understand how to compile it..
...
svn path=/nixpkgs/trunk/; revision=20143
2010-02-21 06:56:24 +00:00
Alexander Tsamutali
7a05d7ca38
desktops/gnome-2.28/desktop/vte: New nixpkg.
...
svn path=/nixpkgs/trunk/; revision=20142
2010-02-20 19:24:52 +00:00
Michael Raskin
c902a64fb7
Update PLT Scheme
...
svn path=/nixpkgs/trunk/; revision=20141
2010-02-20 18:34:50 +00:00
Ludovic Courtès
97c9ff361f
GNU Guile 1.9.8.
...
svn path=/nixpkgs/trunk/; revision=20140
2010-02-20 16:19:36 +00:00
Michael Raskin
7db8225aed
Update Data Matrix library and ifx its build
...
svn path=/nixpkgs/trunk/; revision=20139
2010-02-20 11:56:23 +00:00
Lluís Batlle i Rossell
9727f3d707
Making the i915 module Kernel Mode Setting enabled.
...
This is required by the X module nowadays, and the linux i686 config does not
have it enabled by default.
svn path=/nixpkgs/trunk/; revision=20136
2010-02-19 18:28:02 +00:00
Lluís Batlle i Rossell
7dc6cf1f03
Removing crossArm.uboot from the hydra builds - it now depends on a platform being set.
...
svn path=/nixpkgs/trunk/; revision=20131
2010-02-19 15:48:07 +00:00
Eelco Dolstra
06f07381c4
* Fix some evaluation errors.
...
* Removed glibc 2.10.
svn path=/nixpkgs/trunk/; revision=20130
2010-02-19 15:40:37 +00:00
Lluís Batlle i Rossell
e1760d529b
I still did not fix the nixpkgs tarball in the previous commit...
...
Next attempt, now simpler.
svn path=/nixpkgs/trunk/; revision=20129
2010-02-19 14:42:50 +00:00
Lluís Batlle i Rossell
912bbd7aa1
Removing the qt as an opencascade dependency. It is not used at all there.
...
svn path=/nixpkgs/trunk/; revision=20128
2010-02-19 14:25:23 +00:00
Lluís Batlle i Rossell
840a78977b
Adding a kernelArch to the 'pc' platform to keep uboot happy.
...
This should fix the nixpkgs tarball evaluation.
svn path=/nixpkgs/trunk/; revision=20127
2010-02-19 14:25:15 +00:00
Eelco Dolstra
af717b48f4
* Firefox 3.5.8.
...
svn path=/nixpkgs/trunk/; revision=20125
2010-02-19 10:03:31 +00:00
Michael Raskin
b51a1937b6
Fix pqiv unpack step
...
svn path=/nixpkgs/trunk/; revision=20124
2010-02-19 09:58:37 +00:00
Lluís Batlle i Rossell
b0e9724ef5
Quantum leap updating memtest86+.
...
svn path=/nixpkgs/trunk/; revision=20122
2010-02-19 09:48:50 +00:00
Lluís Batlle i Rossell
50e309f022
linux: Removing some assertions on armv5tel no more valid when cross-building.
...
svn path=/nixpkgs/trunk/; revision=20119
2010-02-18 21:10:53 +00:00
Lluís Batlle i Rossell
85a35352bb
Trying to get serial in qemu integratorcp. Still without succeed.
...
svn path=/nixpkgs/trunk/; revision=20118
2010-02-18 21:10:49 +00:00
Marco Maggesi
0be3d18896
Updated nixkpkgs/pkgs/os-specific/linux/dmtcp/devel.nix
...
svn path=/nixpkgs/trunk/; revision=20116
2010-02-18 18:49:32 +00:00
Lluís Batlle i Rossell
7506ae348d
Updating qemu
...
svn path=/nixpkgs/trunk/; revision=20115
2010-02-18 18:42:11 +00:00
Michael Raskin
c3e3bc52dc
Fix missed argument
...
svn path=/nixpkgs/trunk/; revision=20113
2010-02-18 16:26:35 +00:00
Lluís Batlle i Rossell
cdf6235ac9
Making opencascade link properly its shared objects with their dependencies. Its libtool script
...
used 'file' to find the shared object needed on linking.
svn path=/nixpkgs/trunk/; revision=20112
2010-02-18 16:24:45 +00:00
Michael Raskin
bf4f2769b1
Fix propagated dependencies in hal
...
svn path=/nixpkgs/trunk/; revision=20108
2010-02-18 15:44:01 +00:00
Sander van der Burg
3b65d90edf
Removed all root ownership stuff, so that the kernel modules will install in a chroot environment
...
svn path=/nixpkgs/trunk/; revision=20103
2010-02-18 14:04:22 +00:00
Michael Raskin
50a513f515
Fix linking for SGT puzzles
...
svn path=/nixpkgs/trunk/; revision=20100
2010-02-18 13:40:10 +00:00
Sander van der Burg
2fb201871b
Running the guest additions build in a chroot environment will not install the kernel modules. Removing the ownership attributes might prevents this
...
svn path=/nixpkgs/trunk/; revision=20097
2010-02-18 13:09:49 +00:00
Peter Simons
c7e5f6a80b
pkgs/applications/version-management/git-and-tools/git: version 1.7.0 needs Python
...
svn path=/nixpkgs/trunk/; revision=20096
2010-02-18 12:08:39 +00:00
Lluís Batlle i Rossell
9bcb6277f3
Changing linux kernel references from vmlinuz to bzImage.
...
This way we get a simpler kernel build script.
svn path=/nixpkgs/trunk/; revision=20094
2010-02-18 11:34:48 +00:00
Michael Raskin
89d1b7881f
Update SGT puzzles and improve builderDefs processing of propagated(Native)BuildInputs after stdenv merge
...
svn path=/nixpkgs/trunk/; revision=20093
2010-02-18 10:29:40 +00:00
Lluís Batlle i Rossell
5fc64e5f9c
Again, trying to fix the kernel build.
...
It seems that there is no make target named 'vmlinuz' that makes the file 'vmlinuz'.
So we need different variables for the make target and the kernel file. Unless we
some day stop using the file 'vmlinuz' in pc, and use bzImage.
svn path=/nixpkgs/trunk/; revision=20092
2010-02-18 10:25:33 +00:00
Lluís Batlle i Rossell
513443dc9f
Setting the pc kernel image to 'vmlinuz', and not 'bzImage'.
...
I thought it had to be bzImage. I should have checked better.
svn path=/nixpkgs/trunk/; revision=20091
2010-02-18 09:42:59 +00:00
Lluís Batlle i Rossell
ee72c53378
Trying to fix the non-cross kernel build.
...
svn path=/nixpkgs/trunk/; revision=20090
2010-02-18 08:02:16 +00:00
Marc Weber
f57a5d2273
libXi: build man pages
...
svn path=/nixpkgs/trunk/; revision=20089
2010-02-18 01:49:53 +00:00
Marc Weber
fd18682bc4
fix cabal builds (propagatedBuildNativeInputs)
...
svn path=/nixpkgs/trunk/; revision=20088
2010-02-18 01:49:50 +00:00
Marc Weber
82b66086dd
make ctags find ruby modules
...
svn path=/nixpkgs/trunk/; revision=20087
2010-02-18 01:49:48 +00:00
Marc Weber
8acdb419c6
fix git-fast-import by using a correct tar.gz
...
svn path=/nixpkgs/trunk/; revision=20086
2010-02-18 01:49:45 +00:00
Marc Weber
662a933eb0
fix mercurial gui (python lib path still pointed to 2.5 bet python 2.6 is used now)
...
svn path=/nixpkgs/trunk/; revision=20085
2010-02-18 01:49:41 +00:00
Marc Weber
4007d19700
fix vim_configurable
...
svn path=/nixpkgs/trunk/; revision=20084
2010-02-18 01:49:22 +00:00
Peter Simons
6a48baead3
pkgs/applications/version-management/git-and-tools/git: updated to version 1.7.0
...
svn path=/nixpkgs/trunk/; revision=20083
2010-02-18 00:28:24 +00:00
Peter Simons
200c07d817
pkgs/applications/version-management/git-and-tools/git: added myself to the list of maintainers
...
svn path=/nixpkgs/trunk/; revision=20082
2010-02-18 00:28:15 +00:00
Lluís Batlle i Rossell
4e51d7d296
Fixing the linux kernel cross builder (lacking an ARCH again in a make call)
...
svn path=/nixpkgs/trunk/; revision=20081
2010-02-17 22:36:59 +00:00
Lluís Batlle i Rossell
70cb7050f5
Trying to make the linux kernels also cross-build.
...
svn path=/nixpkgs/trunk/; revision=20080
2010-02-17 22:20:56 +00:00
Lluís Batlle i Rossell
7b4529cfc7
Allowing multiplatform uboot (sheevaplug/integratorcp).
...
svn path=/nixpkgs/trunk/; revision=20079
2010-02-17 21:09:27 +00:00
Lluís Batlle i Rossell
aca3e65338
Adding the mainline uboot.
...
svn path=/nixpkgs/trunk/; revision=20078
2010-02-17 20:53:01 +00:00
Sander van der Burg
b036ee727a
Fixed installation of virtualbox kernel modules
...
svn path=/nixpkgs/trunk/; revision=20077
2010-02-17 16:13:53 +00:00
Michael Raskin
a3282d5e3e
Nuke networking tests for SBCL
...
svn path=/nixpkgs/trunk/; revision=20074
2010-02-17 10:40:25 +00:00
Eelco Dolstra
3687bc9e39
* libdrm updated to 2.4.18 ("motivated by a fix for a bug in the intel
...
support which was causing dramatic failures with at least version
2.10 of the xf86-video-intel driver").
svn path=/nixpkgs/trunk/; revision=20073
2010-02-17 09:56:04 +00:00
Michael Raskin
c8dd2f9891
Give up on /etc/passwd-requiring tests
...
svn path=/nixpkgs/trunk/; revision=20069
2010-02-17 08:24:02 +00:00
Michael Raskin
2fb7879a19
Upstart 0.6 is just upstart now
...
svn path=/nixpkgs/trunk/; revision=20067
2010-02-17 06:53:08 +00:00
Michael Raskin
6a51d0465d
Try updating SBCL
...
svn path=/nixpkgs/trunk/; revision=20066
2010-02-17 06:50:45 +00:00
Michael Raskin
5401a03919
Disable checks - the failure reason is impossibility to resolve localhost
...
svn path=/nixpkgs/trunk/; revision=20065
2010-02-17 06:43:49 +00:00
Lluís Batlle i Rossell
c9b077f296
Updating freemind, and making it build.
...
(A hack about mkdir... strange ant. I don't know how it is supposed to work)
svn path=/nixpkgs/trunk/; revision=20061
2010-02-16 21:29:35 +00:00
Lluís Batlle i Rossell
c86da889cc
Made the kernel generate-config "build as modules as you can" an option.
...
Sepcifically, a nixpkgs "platform" option. So, for PC all remained the same
as it was.
svn path=/nixpkgs/trunk/; revision=20059
2010-02-16 19:27:51 +00:00
Lluís Batlle i Rossell
b07babb810
Updating homebank.
...
svn path=/nixpkgs/trunk/; revision=20058
2010-02-16 17:49:24 +00:00
Sander van der Burg
30b6f037a0
Upgraded VirtualBox to 3.1.4 which also fixes problems in recent NixOS releases. It took me a while to upgrade this, since the installer is different compared to older releases.
...
svn path=/nixpkgs/trunk/; revision=20057
2010-02-16 16:10:01 +00:00
Peter Simons
7fd8b772db
pkgs/applications/version-management/rcs/default.nix: meta.platforms is not a list
...
svn path=/nixpkgs/trunk/; revision=20053
2010-02-16 14:19:07 +00:00
Eelco Dolstra
b1fb08569f
* X.org server updated to 1.7.5.
...
svn path=/nixpkgs/trunk/; revision=20050
2010-02-16 13:34:30 +00:00
Sander van der Burg
c8555cfd1b
Upgraded ktorrent to 3.3.4
...
svn path=/nixpkgs/trunk/; revision=20047
2010-02-16 11:22:54 +00:00
Sander van der Burg
730cbfd6f5
Upgraded konversation to 1.2.3
...
svn path=/nixpkgs/trunk/; revision=20046
2010-02-16 11:21:40 +00:00
Sander van der Burg
f8ac1928b2
Upgraded kdesvn to 1.5.2
...
svn path=/nixpkgs/trunk/; revision=20045
2010-02-16 11:19:50 +00:00
Sander van der Burg
70c5690a76
Upgraded koffice to 2.1.1
...
svn path=/nixpkgs/trunk/; revision=20044
2010-02-16 11:15:57 +00:00
Sander van der Burg
292ebe636f
Added KDE 4.4.x packages to the buildfarm
...
svn path=/nixpkgs/trunk/; revision=20043
2010-02-16 10:55:56 +00:00
Ludovic Courtès
859d2702b9
GNU MyServer 0.9.2.
...
svn path=/nixpkgs/trunk/; revision=20042
2010-02-16 10:48:06 +00:00
Ludovic Courtès
31f2bd9886
GNU Libidn 1.18.
...
svn path=/nixpkgs/trunk/; revision=20041
2010-02-16 10:48:02 +00:00
Ludovic Courtès
1afa19a68a
libunistring: Try to get the shared library on Cygwin.
...
svn path=/nixpkgs/trunk/; revision=20038
2010-02-16 09:08:40 +00:00
Sander van der Burg
1033f5e6fa
Oops: forgot to change version number in the name
...
svn path=/nixpkgs/trunk/; revision=20034
2010-02-15 22:54:08 +00:00
Sander van der Burg
3c4f2a35a4
Fixed compilation of kdenetwork-4.4.0
...
svn path=/nixpkgs/trunk/; revision=20033
2010-02-15 22:37:30 +00:00
Sander van der Burg
45a92833bd
Added rhpl as buildInput to kdeutils so that system-config-printer can be used
...
svn path=/nixpkgs/trunk/; revision=20032
2010-02-15 22:20:05 +00:00
Sander van der Burg
61980ddf12
Fixed rhpl which also fixes printer support in kdeadmin
...
svn path=/nixpkgs/trunk/; revision=20031
2010-02-15 21:53:31 +00:00
Eelco Dolstra
822d59d4f9
* Remove phpIniBuilder (obsolete).
...
svn path=/nixpkgs/trunk/; revision=20028
2010-02-15 20:29:50 +00:00
Lluís Batlle i Rossell
d43afaf102
Fixing the derivation names for kde 4.3.5 l10n
...
svn path=/nixpkgs/trunk/; revision=20027
2010-02-15 19:53:58 +00:00
Lluís Batlle i Rossell
9181aca12e
Adding a script to update kde 4.3. This can be used for 4.4 too.
...
I updated kde 4.3.4 to 4.3.5.
svn path=/nixpkgs/trunk/; revision=20026
2010-02-15 19:43:02 +00:00
Sander van der Burg
a928ee6ea0
Upgraded soprano to 2.4.0.1 hotfix release
...
svn path=/nixpkgs/trunk/; revision=20022
2010-02-15 18:05:47 +00:00
Sander van der Burg
1ec8a7412a
Fixed compilation of kdeplasma-addons by passing libXi as buildInput
...
svn path=/nixpkgs/trunk/; revision=20021
2010-02-15 18:03:27 +00:00
Lluís Batlle i Rossell
7390c0e31f
Making pulseaudio optional on libao.
...
svn path=/nixpkgs/trunk/; revision=20018
2010-02-15 17:10:35 +00:00
Lluís Batlle i Rossell
6c622c014d
octave wants x11 (I reported this to octave as a bug).
...
Maybe it got in from their recent fltk/gl attempts to make their own plotter.
svn path=/nixpkgs/trunk/; revision=20017
2010-02-15 17:10:25 +00:00
Eelco Dolstra
e9ad76a2ff
* Upstart updated to 0.6.5.
...
* Added libnih (a dependency of Upstart).
* Removed the old Upstart 0.3.x.
svn path=/nixpkgs/trunk/; revision=20015
2010-02-15 15:55:39 +00:00
Armijn Hemel
c0e9630d98
update to 4.6.2
...
svn path=/nixpkgs/trunk/; revision=20010
2010-02-15 14:38:57 +00:00
Eelco Dolstra
65aecdd00b
* Zabbix updated to 1.8.1.
...
svn path=/nixpkgs/trunk/; revision=20009
2010-02-15 14:20:28 +00:00
Marco Maggesi
513d653d68
Add HOL Light and its dependencies.
...
Add pkgs/applications/science/logic/hol_light
and pkgs/applications/science/emacs-modes/hol_light
Some functionalities of HOL Light requires the compiled sources of
OCaml. For now we provide a new package ocaml_with_sources. After
this shuold be merged with the current version of OCaml already
present in nixpkgs.
svn path=/nixpkgs/trunk/; revision=20008
2010-02-15 11:00:02 +00:00
Lluís Batlle i Rossell
43e167641f
Updating octave and gnuplot.
...
svn path=/nixpkgs/trunk/; revision=20007
2010-02-15 10:54:50 +00:00
Ludovic Courtès
39a69da121
libunistring: Disable tests on non-GNU systems.
...
svn path=/nixpkgs/trunk/; revision=20005
2010-02-15 09:36:33 +00:00
Ludovic Courtès
471184bb38
GCC: Try to build on `i686-darwin'.
...
svn path=/nixpkgs/trunk/; revision=20004
2010-02-15 09:36:23 +00:00
Lluís Batlle i Rossell
9dc143e9aa
Updating the flash player 10 for linux.
...
svn path=/nixpkgs/trunk/; revision=20003
2010-02-15 08:49:02 +00:00
Lluís Batlle i Rossell
dac3633341
Adding 'glib' as buildInput to webkit (its configure script wanteed it).
...
Naming all the buildInputs as for the target system (s/buildNativeInputs/buildInputs).
svn path=/nixpkgs/trunk/; revision=20002
2010-02-15 08:42:45 +00:00
Sander van der Burg
de25c3f41d
Added libXtst as buildInput in order to fix the compilation of kdeplasma-addons
...
svn path=/nixpkgs/trunk/; revision=20001
2010-02-14 23:07:57 +00:00
Sander van der Burg
41c17ffebf
Added attica to buildInputs of kdeplasma-addons-4.4.0
...
svn path=/nixpkgs/trunk/; revision=20000
2010-02-14 23:04:56 +00:00
Sander van der Burg
6bcf488584
Upgraded pycups to 1.9.48
...
svn path=/nixpkgs/trunk/; revision=19999
2010-02-14 23:02:22 +00:00
Sander van der Burg
a6898fba99
Fixed compilation of kdesdk-4.4.0
...
svn path=/nixpkgs/trunk/; revision=19998
2010-02-14 22:44:05 +00:00
Sander van der Burg
2d2cb184c8
Fixed compilation of kdegames-4.4.0
...
svn path=/nixpkgs/trunk/; revision=19997
2010-02-14 22:40:28 +00:00
Sander van der Burg
ceda76efcf
Added comment about missing speechd dependency
...
svn path=/nixpkgs/trunk/; revision=19996
2010-02-14 22:19:15 +00:00
Ludovic Courtès
d8a5443d61
GNU libunistring 0.9.2.1.
...
svn path=/nixpkgs/trunk/; revision=19995
2010-02-14 22:05:50 +00:00
Sander van der Burg
019db7b9dc
- Added libssh (used by kdebase-runtime)
...
- Completed kdebase-runtime 4.4.0
svn path=/nixpkgs/trunk/; revision=19994
2010-02-14 21:56:35 +00:00
Sander van der Burg
7b17fdc916
Upgraded VirtualBox to 3.1.4
...
svn path=/nixpkgs/trunk/; revision=19993
2010-02-14 21:27:13 +00:00
Sander van der Burg
6eb2cc674a
Patches the python modules path of kdebase-workspace to compile with kdebindings again
...
svn path=/nixpkgs/trunk/; revision=19992
2010-02-14 21:19:45 +00:00
Eelco Dolstra
1d2c0eea75
svn path=/nixpkgs/trunk/; revision=19991
2010-02-14 16:21:42 +00:00
Ludovic Courtès
5fe8c274d5
GNU IceCat: Fix the file name of `firefox.js'.
...
svn path=/nixpkgs/trunk/; revision=19990
2010-02-14 14:16:15 +00:00
Ludovic Courtès
ac4cd45459
GNU IceCat: Fix typo.
...
svn path=/nixpkgs/trunk/; revision=19989
2010-02-14 11:37:45 +00:00
Marc Weber
92c42c9000
fix gimp plugins, webkit build
...
svn path=/nixpkgs/trunk/; revision=19988
2010-02-14 00:33:57 +00:00
Ludovic Courtès
928f2c52e1
GNU IceCat: Fix the fix.
...
svn path=/nixpkgs/trunk/; revision=19987
2010-02-13 22:46:25 +00:00
Ludovic Courtès
0276958fed
GNU IceCat: Attempt to work around known bugs.
...
svn path=/nixpkgs/trunk/; revision=19986
2010-02-13 22:36:48 +00:00
Ludovic Courtès
62665b519e
Add GNU TeXmacs.
...
svn path=/nixpkgs/trunk/; revision=19985
2010-02-13 19:22:16 +00:00
Marc Weber
58747b8bf2
rxvt-unicode upgrade to 9.0.7 - didn't compile
...
svn path=/nixpkgs/trunk/; revision=19984
2010-02-13 17:39:27 +00:00
Marc Weber
edc1d89a45
update git-1.6.6.2
...
svn path=/nixpkgs/trunk/; revision=19983
2010-02-13 17:39:25 +00:00
Marc Weber
63abe29481
update commoncpp2 (to make it compile again)
...
svn path=/nixpkgs/trunk/; revision=19982
2010-02-13 17:39:15 +00:00
Lluís Batlle i Rossell
a21df5e172
I'll try to remove the hydra evaluation errors (throws) about ghc bootstrapping.
...
svn path=/nixpkgs/trunk/; revision=19981
2010-02-13 16:48:12 +00:00
Lluís Batlle i Rossell
bc15e7b440
I removed too much in the previous commit - I fix nixpkgs kde44 evaluation.
...
svn path=/nixpkgs/trunk/; revision=19979
2010-02-13 16:06:30 +00:00
Lluís Batlle i Rossell
911dfd89fc
vtk had a wrong version version in its 'name'
...
svn path=/nixpkgs/trunk/; revision=19978
2010-02-13 16:06:25 +00:00
Lluís Batlle i Rossell
cb7f9b8e52
Removing kdelibs_experimental mentions in kde44 expressions. This removes the workspace builder/patch too.
...
svn path=/nixpkgs/trunk/; revision=19977
2010-02-13 15:49:01 +00:00
Lluís Batlle i Rossell
aaffbe6971
kdeedu builds, and kdebindings build
...
svn path=/nixpkgs/trunk/; revision=19976
2010-02-13 15:37:06 +00:00
Lluís Batlle i Rossell
ce46e7ff63
Found a new phonon (in 'unstable'), and I think kde-4.4 should be able to link with it.
...
I updated gstreamer too, because this phonon was not finding a header file. As that
did not fix much the phonon build, I helped the generic builder with NIX_CFLAGS_COMPILER for
phonon to find the proper header files. Either the phonon cmake scripts don't find properly
the gstreamer plugins header file, or we install gstreamer in a strange way.
svn path=/nixpkgs/trunk/; revision=19974
2010-02-13 14:03:07 +00:00
Sander van der Burg
e4b1633d6b
Some fixes to kdebindings. I now builds again but still gives me a compile error
...
svn path=/nixpkgs/trunk/; revision=19973
2010-02-13 14:02:07 +00:00
Marco Maggesi
f1f60cef0d
Add package dmtcp_devel
...
svn path=/nixpkgs/trunk/; revision=19972
2010-02-13 11:02:08 +00:00
Lluís Batlle i Rossell
3615623c94
Kde 4.4 runtime wants attica.
...
svn path=/nixpkgs/trunk/; revision=19970
2010-02-13 00:06:51 +00:00
Lluís Batlle i Rossell
9e12d318b0
Updating libmsn to fit kdenetwork-4.4 needs
...
svn path=/nixpkgs/trunk/; revision=19969
2010-02-12 23:31:47 +00:00
Lluís Batlle i Rossell
683688f476
Updating skype. Finally!
...
I think that patchelf was breaking the binary, and I decided to use a wrapper
with a LD_LIBRARY_PATH.
svn path=/nixpkgs/trunk/; revision=19968
2010-02-12 23:19:37 +00:00
Lluís Batlle i Rossell
9cddc91b91
Fixing a hash in kde 4.4 artwork
...
svn path=/nixpkgs/trunk/; revision=19967
2010-02-12 23:19:31 +00:00
Lluís Batlle i Rossell
c812574385
Removing a now unneeded CMAKE_PREFIX_PATH in ktorrent
...
svn path=/nixpkgs/trunk/; revision=19966
2010-02-12 22:30:06 +00:00
Lluís Batlle i Rossell
e0ff817c40
Big kde-related update.
...
I updated cmake to use CMAKE_PREFIX_PATH instead of CMAKE_INCLUDE_PATH and CMAKE_LIBRARY_PATH.
There were some expressions in kde that required CMAKE_PREFIX_PATH, and now they are not anymore
a special case.
I updated most kde-4.4 files to point to kde-4.4.0 sources instead of 4.3.4 .
svn path=/nixpkgs/trunk/; revision=19965
2010-02-12 21:58:27 +00:00
Lluís Batlle i Rossell
333dfb869e
More on kde44 builds. More findqt4.cmake copies around fixed, and
...
set shared_desktop_ontologies to be propagated in kdelibs.
(Maybe only kdegraphics wants it? I think more will want it, so I set it
in propagatedBuildInputs)
svn path=/nixpkgs/trunk/; revision=19962
2010-02-12 17:53:51 +00:00
Lluís Batlle i Rossell
3672eaf275
Forgot the patch for kde-4.4 findqt4.
...
svn path=/nixpkgs/trunk/; revision=19961
2010-02-12 17:04:15 +00:00
Lluís Batlle i Rossell
ffcac187e8
Trying to get kde-4.4 build *normally*. That is, without the hack "includeAllQtDirs".
...
I patched properly their own copy of cmake findqt4 module, the same way as we had to
do in the cmake expression.
The findqt4 patch we have is already filled in the cmake buglist, but it seems it is
still not solved in in cmake 2.8.0
svn path=/nixpkgs/trunk/; revision=19960
2010-02-12 17:02:45 +00:00
Eelco Dolstra
4e0ccd63b3
* In NixOS chroot builds, there is no root account. So rcs' configure
...
should not rely on its existence in deciding whether to use
getpwuid(). Not using getpwuid() causes rcs to fail with "ci:
setuid not supported".
svn path=/nixpkgs/trunk/; revision=19957
2010-02-12 14:27:26 +00:00
Ludovic Courtès
0c17cced16
GMP: Build on all platforms.
...
svn path=/nixpkgs/trunk/; revision=19955
2010-02-12 14:14:45 +00:00
Ludovic Courtès
a45675427f
BDW-GC: Build on all platforms.
...
svn path=/nixpkgs/trunk/; revision=19954
2010-02-12 14:14:40 +00:00
Ludovic Courtès
76494a3029
libunistring: Build on all platforms.
...
svn path=/nixpkgs/trunk/; revision=19951
2010-02-12 13:40:53 +00:00
Eelco Dolstra
f2b0c5a6fa
* librsync: pass --enable-shared to get shared libraries. Then the
...
-fPIC flag is no longer needed.
svn path=/nixpkgs/trunk/; revision=19949
2010-02-12 12:27:48 +00:00
Ludovic Courtès
66e7aaa5c7
GNU Acct 6.5.4.
...
svn path=/nixpkgs/trunk/; revision=19945
2010-02-12 09:07:19 +00:00
Marc Weber
ec88f45c93
fix build of procmail
...
svn path=/nixpkgs/trunk/; revision=19944
2010-02-12 04:07:41 +00:00
Lluís Batlle i Rossell
9501307305
Updating the url for shared desktop ontologies.
...
svn path=/nixpkgs/trunk/; revision=19943
2010-02-11 22:22:00 +00:00
Lluís Batlle i Rossell
fab150b628
Updating acpid.
...
svn path=/nixpkgs/trunk/; revision=19942
2010-02-11 18:59:58 +00:00
Lluís Batlle i Rossell
8bfde9d310
Updating openvpn to a non-release_candidate newer version, and becoming maintainer.
...
svn path=/nixpkgs/trunk/; revision=19941
2010-02-11 16:45:19 +00:00
Eelco Dolstra
91184831a9
* Using the en_US locale gives a lot of warnings (because we don't
...
have it without glibc-locales).
svn path=/nixpkgs/trunk/; revision=19940
2010-02-11 16:18:14 +00:00
Lluís Batlle i Rossell
76c8738552
Adding the GAP gimp plugin, and making nix-env recurse into the gimp plugins attribute set.
...
svn path=/nixpkgs/trunk/; revision=19936
2010-02-11 15:08:05 +00:00
Lluís Batlle i Rossell
8da211ed32
Making openoffice build in chroot (where there is no root in /etc/passwd)
...
svn path=/nixpkgs/trunk/; revision=19935
2010-02-11 15:08:00 +00:00
Ludovic Courtès
9be35372dc
GNU Acct 6.5.3.
...
svn path=/nixpkgs/trunk/; revision=19934
2010-02-11 14:48:34 +00:00
Eelco Dolstra
2027b96de5
* Linux 2.6.32.8.
...
svn path=/nixpkgs/trunk/; revision=19933
2010-02-11 14:33:17 +00:00
Eelco Dolstra
8fab70fde3
* redland: make the dependency on postgresql, mysql, sqlite and db4
...
optional. It's really not necessary for KDE to depend on four
different databases...
svn path=/nixpkgs/trunk/; revision=19932
2010-02-11 14:31:49 +00:00
Eelco Dolstra
554549de5b
* Latest PostgreSQL.
...
svn path=/nixpkgs/trunk/; revision=19931
2010-02-11 13:40:20 +00:00
Sander van der Burg
740a6fe281
- Some updates to KDE 4.4. kdelibs is still broken though
...
- Updated eduke32 to use the new polymer renderer which is so cool :-)
svn path=/nixpkgs/trunk/; revision=19930
2010-02-11 13:34:28 +00:00
Michael Raskin
76328b76b7
Update TeX packages
...
svn path=/nixpkgs/trunk/; revision=19926
2010-02-11 09:45:07 +00:00
Michael Raskin
f71d6f9f91
Update lmodern
...
svn path=/nixpkgs/trunk/; revision=19925
2010-02-11 09:44:48 +00:00
Michael Raskin
db5fae520c
TeXLive insists on texmf in $prefix/texmf
...
svn path=/nixpkgs/trunk/; revision=19921
2010-02-11 05:20:16 +00:00
Marc Weber
8bd41985a0
make gparted compile again by updating it
...
svn path=/nixpkgs/trunk/; revision=19920
2010-02-11 02:43:48 +00:00
Marc Weber
cb9030b947
use --with-dbus-daemondir= cause DBUS_DAEMONDIR seems to be broken?
...
dbus-launch no longer reports any errors
svn path=/nixpkgs/trunk/; revision=19919
2010-02-11 02:43:45 +00:00
Lluís Batlle i Rossell
ef9ef781ea
Trying to update kipi-plugins.
...
svn path=/nixpkgs/trunk/; revision=19918
2010-02-10 23:46:46 +00:00
Lluís Batlle i Rossell
3c441a4efb
Trying to update digikam (both kde44 and kde43)
...
svn path=/nixpkgs/trunk/; revision=19917
2010-02-10 23:38:02 +00:00
Michael Raskin
d257f66c62
TeXLive needs fontconfig
...
svn path=/nixpkgs/trunk/; revision=19916
2010-02-10 20:43:59 +00:00
Eelco Dolstra
81fabfeb04
* gnupg updated to 1.4.10. Also, build with bzip2 support. Duplicity
...
can use this to better compress backups.
svn path=/nixpkgs/trunk/; revision=19915
2010-02-10 19:03:48 +00:00
Michael Raskin
62e31307ec
If I understand anything, this fixes TeXLive. Has not yet finished the build
...
svn path=/nixpkgs/trunk/; revision=19914
2010-02-10 18:16:32 +00:00
Eelco Dolstra
dae4ffdfdf
* Added `boto', a Python interface to AWS.
...
* Add boto as a dependency to duplicity to support backups to Amazon
S3.
svn path=/nixpkgs/trunk/; revision=19913
2010-02-10 18:10:22 +00:00
Eelco Dolstra
faa98ce5d6
* Duplicity needs gpg.
...
svn path=/nixpkgs/trunk/; revision=19912
2010-02-10 16:51:01 +00:00
Sander van der Burg
e7739553e6
Added PyQt 4.7 expression required by KDE 4.4.x
...
svn path=/nixpkgs/trunk/; revision=19911
2010-02-10 16:09:12 +00:00
Sander van der Burg
31cbd149d2
- Completed all dependencies for kdelibs-4.4.0
...
- Added SIP 4.10 required for pyqt-4.7.x
- Removed kde libs experimental, which does not exists anymore in 4.4.0
svn path=/nixpkgs/trunk/; revision=19910
2010-02-10 16:01:55 +00:00
Lluís Batlle i Rossell
41687e464e
Updating doxygen.
...
svn path=/nixpkgs/trunk/; revision=19907
2010-02-10 15:35:37 +00:00
Sander van der Burg
bcb6e407ea
Added my initial KDE 4.4 expression
...
svn path=/nixpkgs/trunk/; revision=19906
2010-02-10 15:06:50 +00:00
Eelco Dolstra
3beabfeb59
svn path=/nixpkgs/trunk/; revision=19904
2010-02-10 13:37:28 +00:00
Eelco Dolstra
31b1ba6b11
* apr: don't use accept4(), because it's not support on Linux <
...
2.6.28. It's rather unfortunate that the result of building apr
depends on the capabilities of the kernel on which it's built...
svn path=/nixpkgs/trunk/; revision=19903
2010-02-10 13:30:57 +00:00
Eelco Dolstra
7e7218cf80
* Fixed Genshi.
...
svn path=/nixpkgs/trunk/; revision=19899
2010-02-10 12:11:37 +00:00
Eelco Dolstra
69406f1b39
* Revert r19795 to fix builds on FreeBSD.
...
svn path=/nixpkgs/trunk/; revision=19898
2010-02-10 11:54:49 +00:00
Ludovic Courtès
8004163ff3
TopGit: Use `fetchgit' rather than relying on Gitweb-generated tarballs.
...
Gitweb's tarballs change overtime, probably because they are generated
on-demand and files have different timestamps.
svn path=/nixpkgs/trunk/; revision=19896
2010-02-10 11:28:22 +00:00
Ludovic Courtès
da1f088b3f
TDB, the trivial database.
...
svn path=/nixpkgs/trunk/; revision=19895
2010-02-10 11:28:18 +00:00
Michael Raskin
038ca191a6
Pass Python to TeXLive
...
svn path=/nixpkgs/trunk/; revision=19893
2010-02-10 05:24:21 +00:00
Michael Raskin
dc75a9dc6e
Update TeXLive
...
svn path=/nixpkgs/trunk/; revision=19892
2010-02-10 04:38:11 +00:00
Alexander Tsamutali
1d6086a742
games/warsow: Needs libjpeg62.
...
svn path=/nixpkgs/trunk/; revision=19891
2010-02-09 23:12:47 +00:00
Michael Raskin
357a19ec4e
Add some configure options for ECL
...
svn path=/nixpkgs/trunk/; revision=19885
2010-02-09 13:54:29 +00:00
Rob Vermaas
becfc4fd55
* opendbx: rewrite hack to preConfigure
...
svn path=/nixpkgs/trunk/; revision=19880
2010-02-09 11:46:27 +00:00
Eelco Dolstra
8126b88ef1
* Doh.
...
svn path=/nixpkgs/trunk/; revision=19879
2010-02-09 10:43:13 +00:00
Eelco Dolstra
6478e92556
* Symlink propagated-user-env-packages to
...
propagated-build-native-inputs rather than propagated-build-inputs.
svn path=/nixpkgs/trunk/; revision=19878
2010-02-09 10:42:36 +00:00
Eelco Dolstra
b0376d16a2
* Updated GNU hello to 2.5. This also gets rid of the unintentional
...
"hello-2.3x26" commit.
svn path=/nixpkgs/trunk/; revision=19877
2010-02-09 10:41:39 +00:00
Rob Vermaas
66e655fce8
shared lib patch for libmilter
...
svn path=/nixpkgs/trunk/; revision=19876
2010-02-09 10:37:44 +00:00
Rob Vermaas
a5cecee12e
added libmilter, opendkim
...
svn path=/nixpkgs/trunk/; revision=19875
2010-02-09 10:32:55 +00:00
Rob Vermaas
5c66bbab77
wrong URL
...
svn path=/nixpkgs/trunk/; revision=19874
2010-02-09 10:17:13 +00:00
Rob Vermaas
10acccb622
added tre-0.8.0
...
svn path=/nixpkgs/trunk/; revision=19873
2010-02-09 09:09:25 +00:00
Rob Vermaas
b3dfc53d15
added opendbx 1.4.4
...
svn path=/nixpkgs/trunk/; revision=19872
2010-02-09 09:05:14 +00:00
Lluís Batlle i Rossell
61417a05c7
Removing a dependency on stdenvCross: there was a .buildDrv mentioned when there was
...
no cross build planned.
svn path=/nixpkgs/trunk/; revision=19871
2010-02-09 07:43:36 +00:00
Rob Vermaas
3d841892a7
unbound 1.4.1
...
svn path=/nixpkgs/trunk/; revision=19870
2010-02-09 07:28:32 +00:00
Eelco Dolstra
97a6ecb879
* Incorrect filename: 4.3.2 -> 4.3.1
...
svn path=/nixpkgs/trunk/; revision=19869
2010-02-08 17:46:34 +00:00
Eelco Dolstra
8b5d0c8de5
* Updated checkinstall 1.6.2, and added a patch to make it compile on
...
Glibc 2.11.
svn path=/nixpkgs/trunk/; revision=19868
2010-02-08 15:39:51 +00:00
Ludovic Courtès
b34165054d
Ratpoison: Fix glibc 2.11 builds.
...
svn path=/nixpkgs/trunk/; revision=19867
2010-02-08 15:33:18 +00:00
Lluís Batlle i Rossell
ef43e6fc18
Making the cross-stdenv not to be used unless cross-compiling. This way,
...
no "hostDrv" or "buildDrv" attributes are added to derivations.
svn path=/nixpkgs/trunk/; revision=19866
2010-02-08 15:28:05 +00:00
Rob Vermaas
2bbb78ab94
use gmp 4.3.2 on i686-darwin
...
svn path=/nixpkgs/trunk/; revision=19864
2010-02-08 13:58:25 +00:00
Ludovic Courtès
637746b9cc
WordNet: Fix URL; add `meta.maintainers'.
...
svn path=/nixpkgs/trunk/; revision=19863
2010-02-08 13:53:16 +00:00
Eelco Dolstra
f1713f192d
* Fix the VM builds. They were broken because a `hostDrv' and
...
`buildDrv' attribute gets added to every derivation in
`makeStdenvCross'. So filter out those attributes. But the real
question is why makeStdenvCross is applied when I'm not doing a
cross compilation.
svn path=/nixpkgs/trunk/; revision=19862
2010-02-08 13:35:38 +00:00
Ludovic Courtès
baebba7d05
GKrellM 2.3.4.
...
svn path=/nixpkgs/trunk/; revision=19861
2010-02-08 13:24:22 +00:00
Eelco Dolstra
1472ae7450
* Revert r19814 and r19815 because they break OpenBSD and FreeBSD in
...
the build farm.
svn path=/nixpkgs/trunk/; revision=19860
2010-02-08 12:41:15 +00:00
Alexander Tsamutali
df30fb33c4
data/fonts/terminus-font: New nixpkg.
...
svn path=/nixpkgs/trunk/; revision=19855
2010-02-06 22:28:39 +00:00
Eelco Dolstra
bdfff8e769
* Comment out uclibc because it causes evaluation errors.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19850
2010-02-05 23:08:11 +00:00
Eelco Dolstra
d8c6bb130c
* Sync with the trunk one last time.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19849
2010-02-05 23:06:36 +00:00
Eelco Dolstra
aee659e1e2
* Fix various broken URLs / mirrors.
...
* Updated tcpdump, ImageMagick, lsof.
svn path=/nixpkgs/trunk/; revision=19847
2010-02-05 22:00:51 +00:00
Eelco Dolstra
8c8631d974
* Don't set `platforms' on Google Earth because we don't want Hydra to
...
build it.
svn path=/nixpkgs/trunk/; revision=19839
2010-02-05 19:22:26 +00:00
Rob Vermaas
9c70c2f0a2
* nixpkgs: new version of DBIx-Class-Schema-Loader
...
svn path=/nixpkgs/trunk/; revision=19836
2010-02-05 14:55:37 +00:00
Eelco Dolstra
631ea03875
* Fix / disable some packages that give evaluation errors in Hydra.
...
svn path=/nixpkgs/trunk/; revision=19833
2010-02-05 14:13:25 +00:00
Eelco Dolstra
874b4869a3
* Nix stable updated to 0.14.
...
svn path=/nixpkgs/trunk/; revision=19830
2010-02-05 10:41:24 +00:00
Armijn Hemel
9ba64dc6d9
update Amarok to 2.2.2
...
svn path=/nixpkgs/trunk/; revision=19826
2010-02-04 22:33:18 +00:00
Lluís Batlle i Rossell
df0800e91d
Updating from trunk.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19825
2010-02-04 19:08:28 +00:00
Lluís Batlle i Rossell
b8c1641515
Making pam_unix2 not link to libxcrypt under armv5tel, because libxcrypt does not build under it.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19824
2010-02-04 18:40:54 +00:00
Peter Simons
4193cac8de
Added an interactive variant of sqlite3 that has readline support enabled.
...
svn path=/nixpkgs/trunk/; revision=19823
2010-02-04 16:07:15 +00:00
Marco Maggesi
3ab915e1fc
Add new package pkgs/os-specific/linux/dmtcp/
...
svn path=/nixpkgs/trunk/; revision=19819
2010-02-04 15:41:45 +00:00
Sander van der Burg
a879785099
Script I used to derive the aliases on OpenBSD
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19815
2010-02-04 13:49:51 +00:00
Sander van der Burg
318091ed2b
Added all necessary aliases to match the Linux stdenv as closely as possible on OpenBSD
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19814
2010-02-04 13:47:46 +00:00
Lluís Batlle i Rossell
c83ce140e1
Adding 'duplicity', and its dependency 'librsync'
...
svn path=/nixpkgs/trunk/; revision=19813
2010-02-04 13:42:41 +00:00
Peter Simons
29efcf85c9
pkgs/top-level/all-packages.nix: don't try to link ipmitool statically on Darwin
...
svn path=/nixpkgs/trunk/; revision=19812
2010-02-04 10:31:55 +00:00
Eelco Dolstra
a709fd64e5
* Turn libxcrypt back on. Without it, it's impossible to login to
...
NixOS (because pam_unix2 then cannot handle the passwords in
/etc/shadow).
svn path=/nixpkgs/branches/stdenv-updates/; revision=19810
2010-02-04 09:35:51 +00:00
Eelco Dolstra
82f0eb65e3
* Disable the HPN patch in OpenSSH. It breaks connection sharing.
...
E.g. in `nix-copy-closure --to ...', the master hangs in futex().
svn path=/nixpkgs/trunk/; revision=19803
2010-02-04 01:39:00 +00:00
Ludovic Courtès
b46d05da85
Tahoe-LAFS: Hopefully fix subtle test suite bug.
...
svn path=/nixpkgs/trunk/; revision=19801
2010-02-03 23:38:12 +00:00
Sander van der Burg
e38e9988a1
Added all necessary aliases to match the Linux stdenv as closely as possible on FreeBSD
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19795
2010-02-03 20:41:28 +00:00
Sander van der Burg
318dc53aa3
Fixed dbus-glib compilation on FreeBSD
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19793
2010-02-03 20:20:00 +00:00
Eelco Dolstra
79df27d45b
* Subversion 1.6.9.
...
svn path=/nixpkgs/trunk/; revision=19791
2010-02-03 18:39:13 +00:00
Sander van der Burg
d26683f5a9
Fixed compilation for GLib on FreeBSD
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19790
2010-02-03 16:12:19 +00:00
Eelco Dolstra
a617a7c239
* Sync with the trunk.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19786
2010-02-03 14:23:43 +00:00
Ludovic Courtès
b5088abe20
Tahoe-LAFS 1.6.0.
...
svn path=/nixpkgs/trunk/; revision=19784
2010-02-03 13:38:03 +00:00
Ludovic Courtès
1e9f08cb2c
Add setuptools-trial.
...
svn path=/nixpkgs/trunk/; revision=19783
2010-02-03 13:37:59 +00:00
Ludovic Courtès
167d42970d
Twisted: Attempt to generate the plug-in cache.
...
svn path=/nixpkgs/trunk/; revision=19782
2010-02-03 13:37:49 +00:00
Eelco Dolstra
0662fcbd23
* Fix teTeX on Glibc 2.11.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19781
2010-02-03 13:04:12 +00:00
Eelco Dolstra
3687f56e7a
* Drop the rhpl dependency in kdeadmin and kdeutils because it doesn't
...
build.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19779
2010-02-03 12:56:57 +00:00
Peter Simons
715c59b281
pkgs/tools/system/ipmitool: added optional support for generating statically linked binaries
...
svn path=/nixpkgs/trunk/; revision=19778
2010-02-03 12:47:31 +00:00
Peter Simons
c261d7a847
pkgs/tools/system/ipmitool: updated to version 1.8.11
...
svn path=/nixpkgs/trunk/; revision=19777
2010-02-03 12:47:23 +00:00
Eelco Dolstra
b6943f0056
* Clean up the Lynx expression a bit.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19775
2010-02-03 12:24:03 +00:00
Eelco Dolstra
031f722394
svn path=/nixpkgs/trunk/; revision=19773
2010-02-03 10:56:10 +00:00
Eelco Dolstra
096cd4d17d
* Contrary to what configure --help' says,
--enable-threadsafe' is
...
not the default. So turn it on.
svn path=/nixpkgs/trunk/; revision=19772
2010-02-03 10:51:11 +00:00
Alexander Tsamutali
4033c4aa31
games/urbanterror: New nixpkg for viric.
...
svn path=/nixpkgs/trunk/; revision=19770
2010-02-03 00:46:43 +00:00
Lluís Batlle i Rossell
bb08c61a35
Adding the game 'pioneers'
...
svn path=/nixpkgs/trunk/; revision=19769
2010-02-02 22:21:56 +00:00
Lluís Batlle i Rossell
90962dc4cb
Making teeworlds executables accept parameters (to configure a teeworlds server for example)
...
svn path=/nixpkgs/trunk/; revision=19768
2010-02-02 18:09:58 +00:00
Eelco Dolstra
a066167a9e
* Fix building apr on Cygwin.
...
svn path=/nixpkgs/trunk/; revision=19766
2010-02-02 16:49:07 +00:00
Eelco Dolstra
a697127fcd
* SQLite updated to 3.6.22. Use the amalgamation tarball since it now
...
installs the pkg-config files that other packages expect. This also
makes the dependency on tcl unnecessary.
svn path=/nixpkgs/trunk/; revision=19765
2010-02-02 15:49:48 +00:00
Eelco Dolstra
ed088ba208
* Get rid of the ".svn" directories that Hydra includes nowadays.
...
They make the Nixpkgs tarball much larger and slower to unpack.
svn path=/nixpkgs/trunk/; revision=19762
2010-02-02 15:02:29 +00:00
Lluís Batlle i Rossell
49f9b96ad3
Typo that broke evaluation
...
svn path=/nixpkgs/trunk/; revision=19760
2010-02-01 19:58:57 +00:00
Lluís Batlle i Rossell
1741bb2597
Making 'boost' optionally build with -fPIC (with enableStatic, will produce
...
static libraries linkable in a shared object)
svn path=/nixpkgs/trunk/; revision=19759
2010-02-01 19:55:40 +00:00
Lluís Batlle i Rossell
936f161c00
Adding (quite blindly) some gnome packages to get gnucash built.
...
svn path=/nixpkgs/trunk/; revision=19758
2010-02-01 19:55:03 +00:00
Eelco Dolstra
41e5edb0b3
* qemu-kvm: link against libuuid.
...
svn path=/nixpkgs/trunk/; revision=19757
2010-02-01 18:44:08 +00:00
Eelco Dolstra
b22880b12d
* qemu-kvm: increase the size of the buffer used to build the smbd
...
command line.
svn path=/nixpkgs/trunk/; revision=19756
2010-02-01 18:11:53 +00:00
Eelco Dolstra
277e66450b
* fuse updated to 2.8.2.
...
svn path=/nixpkgs/trunk/; revision=19755
2010-02-01 17:08:35 +00:00
Eelco Dolstra
0e212964fb
* openssh: Install the moduli file.
...
svn path=/nixpkgs/trunk/; revision=19753
2010-02-01 17:04:07 +00:00
Eelco Dolstra
947e2c71ad
* openssh updated to 5.3p1. Also enabled the HPN patch by default.
...
svn path=/nixpkgs/trunk/; revision=19752
2010-02-01 16:56:10 +00:00
Marco Maggesi
f278489e98
Fix bugs and improve pkgs/servers/openafs-client
...
svn path=/nixpkgs/trunk/; revision=19750
2010-02-01 16:27:35 +00:00
Lluís Batlle i Rossell
8beaa7ab63
Updating eaglemode.
...
svn path=/nixpkgs/trunk/; revision=19749
2010-02-01 16:07:59 +00:00
Eelco Dolstra
1c92df1384
* Debian 5.0.4.
...
svn path=/nixpkgs/trunk/; revision=19748
2010-02-01 15:17:34 +00:00
Eelco Dolstra
f719b5268e
* qemu-kvm: honour $TMPDIR for the qemu-smb temporary directory. This
...
ensures that Nix cleans up the qemu-smb directory after a VM test
run (which prevents failures like this one:
http://hydra.nixos.org/build/275355/nixlog/31/raw ).
svn path=/nixpkgs/trunk/; revision=19747
2010-02-01 15:12:49 +00:00
Eelco Dolstra
822db4b9a9
* Glibc updated to 2.11.1. Also cleaned up the expression a bit
...
(don't use args.<attr> for instance).
svn path=/nixpkgs/branches/stdenv-updates/; revision=19745
2010-02-01 09:32:40 +00:00
Ludovic Courtès
d5219beafc
GNU IceCat 3.6: Disable WiFi stuff for now.
...
svn path=/nixpkgs/trunk/; revision=19744
2010-02-01 09:16:56 +00:00
Nicolas Pierron
1664ec986a
Update zsh.
...
svn path=/nixpkgs/trunk/; revision=19740
2010-01-31 12:13:38 +00:00
Nicolas Pierron
5a7228a099
Add tex4ht.
...
svn path=/nixpkgs/trunk/; revision=19739
2010-01-31 12:13:33 +00:00
Armijn Hemel
0e55350a85
update ktorrent to 3.3.3, also make it depend on KDE 4.3
...
svn path=/nixpkgs/trunk/; revision=19737
2010-01-30 19:30:30 +00:00
Ludovic Courtès
486ec4bddd
Coccinelle 0.2.1.
...
svn path=/nixpkgs/trunk/; revision=19736
2010-01-30 17:34:49 +00:00
Lluís Batlle i Rossell
2dfeeb47bb
Making kbd build in armv5tel-linux. gcc 4.4.3 issues a warning with it, and kbd was compiled with -Werror.
...
I switch off -Werror in armv5tel-linux.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19735
2010-01-29 21:30:09 +00:00
Eelco Dolstra
e80d65426f
* Nix 0.14pre19730.
...
svn path=/nixpkgs/trunk/; revision=19733
2010-01-29 15:55:03 +00:00
Eelco Dolstra
69211adabe
* Doh.
...
svn path=/nixpkgs/trunk/; revision=19732
2010-01-29 12:45:11 +00:00
Eelco Dolstra
c61d1424d0
* Spam everybody with failures of the Nixpkgs tarball so that
...
hopefully whoever broke it can fix it ;-)
svn path=/nixpkgs/trunk/; revision=19731
2010-01-29 12:26:12 +00:00
Ludovic Courtès
f75cf224ee
libffi 3.0.9.
...
svn path=/nixpkgs/trunk/; revision=19728
2010-01-29 11:40:39 +00:00
Eelco Dolstra
f79a0a323c
* Urgh.
...
svn path=/nixpkgs/trunk/; revision=19726
2010-01-29 08:04:31 +00:00
Michael Raskin
0c13a20803
Update ECL
...
svn path=/nixpkgs/trunk/; revision=19725
2010-01-29 06:13:22 +00:00
Eelco Dolstra
26ea153e8b
svn path=/nixpkgs/trunk/; revision=19724
2010-01-29 00:38:34 +00:00
Eelco Dolstra
0a882d423b
* Fix stdenv evaluation - use ${stdenv.shell} instead of
...
${stdenv.bash}/bin/bash.
svn path=/nixpkgs/trunk/; revision=19723
2010-01-29 00:17:59 +00:00
Ludovic Courtès
8a57c8bf35
Add mpc123, a Musepack command-line player.
...
svn path=/nixpkgs/trunk/; revision=19722
2010-01-28 22:34:27 +00:00
Ludovic Courtès
7f213f0403
GNU IceCat: Add missing dependency.
...
svn path=/nixpkgs/trunk/; revision=19720
2010-01-28 21:13:04 +00:00
Lluís Batlle i Rossell
fc4d56227c
Updating teeworlds
...
svn path=/nixpkgs/trunk/; revision=19719
2010-01-28 15:50:04 +00:00
Alexander Tsamutali
286e57b783
games/warsow: New package.
...
svn path=/nixpkgs/trunk/; revision=19718
2010-01-27 22:22:35 +00:00
Ludovic Courtès
279d597082
MPICH2 1.2.1.
...
svn path=/nixpkgs/trunk/; revision=19717
2010-01-27 22:13:19 +00:00
Ludovic Courtès
8e1668250c
GNU IceCat: Really fix.
...
svn path=/nixpkgs/trunk/; revision=19716
2010-01-27 22:13:06 +00:00
Lluís Batlle i Rossell
db04d4f644
Making opencascade put header files in 'include', and not 'inc'. I also make
...
it to install the documentation.
svn path=/nixpkgs/trunk/; revision=19715
2010-01-27 18:27:55 +00:00
Lluís Batlle i Rossell
64f0d74319
Fixing the gcc/gcc-wrapper so 'ghdl' gets the proper wrapper (langVhdl = true,
...
from gcc).
svn path=/nixpkgs/branches/stdenv-updates/; revision=19714
2010-01-27 16:29:11 +00:00
Eelco Dolstra
e04beb262e
* Strangely, running "make defconfig" before the generator causes
...
"make config" to print an additional question that the script
doesn't know how to answer ("Audio Excel DSP 16 [N/y] (NEW) ###").
Just ignore it.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19713
2010-01-27 15:43:27 +00:00
Ludovic Courtès
87e7334e64
GNU IceCat: Stick to good ol' bzip2 for now.
...
svn path=/nixpkgs/trunk/; revision=19712
2010-01-27 15:25:31 +00:00
Eelco Dolstra
e9ff6517b9
svn path=/nixpkgs/branches/stdenv-updates/; revision=19711
2010-01-27 14:35:56 +00:00
Eelco Dolstra
9f99223219
* Removed splashutils 1.3 (obsolete).
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19710
2010-01-27 14:35:38 +00:00
Lluís Batlle i Rossell
b2fed75484
2nd attempt at fixing the gnat44 build
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19709
2010-01-27 13:43:23 +00:00
Rob Vermaas
13417770a3
applying patches provided by griswold
...
svn path=/nixpkgs/trunk/; revision=19707
2010-01-27 12:12:35 +00:00
Eelco Dolstra
77bf39bf82
* Fix Nixpksg evaluation.
...
svn path=/nixpkgs/trunk/; revision=19706
2010-01-27 10:58:31 +00:00
Eelco Dolstra
bd14a5d297
* qemu-kvm 0.12.2.
...
svn path=/nixpkgs/trunk/; revision=19705
2010-01-27 10:51:23 +00:00
Eelco Dolstra
6e6f057d18
* icecatXulrunner3 needs a xz argument.
...
svn path=/nixpkgs/trunk/; revision=19704
2010-01-27 10:46:58 +00:00
Ludovic Courtès
828985f2d7
GNU IceCat 3.6.
...
svn path=/nixpkgs/trunk/; revision=19702
2010-01-27 08:53:31 +00:00
Lluís Batlle i Rossell
c85ae25a34
Adapting the gcc-ada patch for gcc-4.4.3.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19701
2010-01-27 08:30:56 +00:00
Eelco Dolstra
116443e839
* Don't call grep from ld-wrapper (especially not O(n^2) times)
...
because it makes linking very slow. Use bash's =~ operator instead
(and only once for each argument). We depend on bash already anyway
because of arrays so it's not a problem.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19699
2010-01-26 22:42:43 +00:00
Lluís Batlle i Rossell
8e55fad6d1
Adding homebank, personal finance software.
...
svn path=/nixpkgs/trunk/; revision=19698
2010-01-26 22:22:11 +00:00
Lluís Batlle i Rossell
62c315a723
Adding libofx and updating opensp (to get libofx built).
...
(I may have broken openjade... I will check later).
svn path=/nixpkgs/trunk/; revision=19697
2010-01-26 22:04:54 +00:00
Ludovic Courtès
ca9dcb28a1
topgit: Fix.
...
svn path=/nixpkgs/trunk/; revision=19695
2010-01-26 21:45:07 +00:00
Eelco Dolstra
7eff18fa03
* Fixed xscreensaver (it couldn't find the X headers/libraries
...
anymore).
svn path=/nixpkgs/branches/stdenv-updates/; revision=19694
2010-01-26 21:40:32 +00:00
Ludovic Courtès
ecc992b7b1
topgit: Get a genuine source tarball; install `README'.
...
svn path=/nixpkgs/trunk/; revision=19693
2010-01-26 21:26:01 +00:00
Eelco Dolstra
6b4de5c25e
* None of us is paying attention today ;-)
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19690
2010-01-26 20:13:23 +00:00
Ludovic Courtès
6dc132be1e
bash: Fix URL.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19688
2010-01-26 19:41:04 +00:00
Peter Simons
30bbff2b68
pkgs/development/libraries/science/math/liblapack: fixed license tag
...
Thanks to Ludovic Courtès for pointing that out.
svn path=/nixpkgs/trunk/; revision=19687
2010-01-26 19:28:09 +00:00
Peter Simons
6a61d675bb
pkgs/development/libraries/science/math/blas: set license to "public domain"
...
It's not entirely clear whether BLAS is in the public domain, but according to
<87636orixx.fsf@gnu.org> Debian did classify it that way, and the license text
sure feels like the authors intend the package to be in the public domain. So
here we are.
svn path=/nixpkgs/trunk/; revision=19686
2010-01-26 19:28:03 +00:00
Eelco Dolstra
64f1191313
* Fix Perl on FreeBSD.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19685
2010-01-26 18:10:59 +00:00
Eelco Dolstra
0d88060fb6
* Update to bash-4.1-p2 (since we're rebuilding everything anyway).
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19680
2010-01-26 16:34:50 +00:00
Lluís Batlle i Rossell
07cdd0fbb1
Updating gcc to 4.4.3
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19679
2010-01-26 16:25:30 +00:00
Rob Vermaas
e8601a4227
explicitly disable readline support for bash on darwin, hacky for now, to avoid massive rebuild
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19678
2010-01-26 16:04:53 +00:00
Eelco Dolstra
fae05e6328
* Build on GCC 4.4.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19677
2010-01-26 15:27:18 +00:00
Eelco Dolstra
af9c358226
* Update some broken Perl packages.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19676
2010-01-26 15:15:58 +00:00
Eelco Dolstra
d068c0dd50
* ktorrent 2.2.8.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19675
2010-01-26 15:05:02 +00:00
Peter Simons
a673728cfe
pkgs/top-level/python-packages.nix: added mathplotlib version 0.99.1.2
...
svn path=/nixpkgs/trunk/; revision=19674
2010-01-26 14:53:22 +00:00
Peter Simons
d2026a9203
pkgs/top-level/python-packages.nix: added numpy version 1.3.0
...
svn path=/nixpkgs/trunk/; revision=19673
2010-01-26 14:53:18 +00:00
Peter Simons
8cb6ced793
pkgs/development/libraries/science/math/liblapack: fixed build and updated to version 3.2.1
...
svn path=/nixpkgs/trunk/; revision=19672
2010-01-26 14:53:13 +00:00
Peter Simons
a5030f06df
pkgs/development/libraries/science/math/blas: added BLAS version 20070405
...
svn path=/nixpkgs/trunk/; revision=19671
2010-01-26 14:53:08 +00:00
Peter Simons
c754532298
pkgs/top-level/all-packages.nix: stripped trailing whitespace
...
svn path=/nixpkgs/trunk/; revision=19670
2010-01-26 14:53:03 +00:00
Peter Simons
0d6a9b979d
pkgs/top-level/python-packages.nix: stripped trailing whitespace
...
svn path=/nixpkgs/trunk/; revision=19669
2010-01-26 14:52:56 +00:00
Ludovic Courtès
0c46b7b4d8
GNU Enscript 1.6.5.
...
svn path=/nixpkgs/trunk/; revision=19668
2010-01-26 14:49:00 +00:00
Eelco Dolstra
e907369c62
* Applied a patch to make Pan build with GCC 4.4.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19667
2010-01-26 14:48:44 +00:00
Eelco Dolstra
566c9ffdc2
* Disable some packages that don't evaluate.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19666
2010-01-26 14:31:23 +00:00
Eelco Dolstra
a25a25e4f4
* Updated Email::Send because it didn't build.
...
* Removed Email::Simple::Creator because it's part of
Email::Simple now.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19665
2010-01-26 13:38:12 +00:00
Eelco Dolstra
4430ce1952
* Fix splashutils.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19662
2010-01-26 10:56:21 +00:00
Eelco Dolstra
561e37cfe0
* Linux 2.6.32.6, 2.6.27.44.
...
svn path=/nixpkgs/trunk/; revision=19661
2010-01-26 10:18:14 +00:00
Ludovic Courtès
cf3b87d747
GNU GRUB 1.97.2.
...
svn path=/nixpkgs/trunk/; revision=19656
2010-01-25 22:04:03 +00:00
Lluís Batlle i Rossell
bb0a18daac
Adding some kind of build expression for money manager ex.
...
It expects to find its resource files in '.', and it also wants to write at '.'.
I think this has to be fixed upstream.
svn path=/nixpkgs/trunk/; revision=19655
2010-01-25 21:40:52 +00:00
Lluís Batlle i Rossell
bcba809460
Updating from trunk.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19654
2010-01-25 18:52:07 +00:00
Eelco Dolstra
10ca771495
* Latest Nix.
...
svn path=/nixpkgs/trunk/; revision=19653
2010-01-25 17:39:33 +00:00
Ludovic Courtès
45aa4e2d7f
nix-prefetch-git: Add support for $NIX_PREFETCH_GIT_DEEP_CLONE.
...
svn path=/nixpkgs/trunk/; revision=19648
2010-01-25 13:23:08 +00:00
Lluís Batlle i Rossell
d1c34b3a47
Updating chmlib.
...
svn path=/nixpkgs/trunk/; revision=19646
2010-01-25 10:34:51 +00:00
Lluís Batlle i Rossell
279ffaa621
Adding ecryptfs, and one of its dependencies: keyutils.
...
(I have not tried whether they work)
svn path=/nixpkgs/trunk/; revision=19645
2010-01-25 10:34:47 +00:00
Eelco Dolstra
ede6283180
* Revert libpng to 1.2.x because 1.4 breaks too many things.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19641
2010-01-24 23:14:26 +00:00
Lluís Batlle i Rossell
98de9a27c9
Fixing the trunk evaluation
...
svn path=/nixpkgs/trunk/; revision=19640
2010-01-24 22:15:23 +00:00
Lluís Batlle i Rossell
029cd0a213
Adding gtkhtml, another program needed for gnucash to build.
...
I thought gtkhtml was not needed, and in my previous commit I removed it as a gnucash dependency.
svn path=/nixpkgs/trunk/; revision=19639
2010-01-24 22:07:53 +00:00
Lluís Batlle i Rossell
6f462d2c7c
Adding (quite blindly) some gnome packages to get gnucash built.
...
svn path=/nixpkgs/trunk/; revision=19638
2010-01-24 21:32:09 +00:00
Ludovic Courtès
f6c80710f5
Add SWEC (Simple Web Error Checker).
...
svn path=/nixpkgs/trunk/; revision=19637
2010-01-24 19:07:16 +00:00
Marc Weber
cb582a87c9
cabal: add noHadock env var. Eg haddock can't create docs for haskell-src-exts
...
svn path=/nixpkgs/trunk/; revision=19636
2010-01-24 15:39:46 +00:00
Marc Weber
41030334dd
adding w3c CSS validator
...
svn path=/nixpkgs/trunk/; revision=19635
2010-01-24 15:39:42 +00:00
Armijn Hemel
f8df44abb1
update to 4.6.1.
...
svn path=/nixpkgs/trunk/; revision=19631
2010-01-23 16:02:45 +00:00
Lluís Batlle i Rossell
d8900100e5
Allowing linux-headers to be built for cross-compilations on non-linux platforms.
...
Updating the list of hydra cross-build jobs to something more ambitious.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19628
2010-01-23 09:41:50 +00:00
Lluís Batlle i Rossell
38c0a2efbd
Test how cross-compilation works on non-linux native platforms.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19627
2010-01-23 00:29:38 +00:00
Lluís Batlle i Rossell
7ef8d2474b
Fixing the cross-compiler build on i686-linux
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19626
2010-01-23 00:24:52 +00:00
Lluís Batlle i Rossell
d9dd893969
Adding cross-build hydra jobs a bit more generic than it was.
...
There is still a lot of room for improvement on how to write the cross build related
jobs for hydra. Step by step.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19621
2010-01-22 18:51:18 +00:00
Lluís Batlle i Rossell
d47aead668
Setting the difference buildInputs/buildNativeInputs in some gtk related packages.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=19620
2010-01-22 18:49:16 +00:00
Ludovic Courtès
14ef547359
Add GNU Gengetopt.
...
svn path=/nixpkgs/trunk/; revision=19618
2010-01-22 17:00:44 +00:00
Eelco Dolstra
2feb604243
* A patch to ec2-bundle-image to make it work properly on read-only
...
images (in the Nix store).
svn path=/nixpkgs/trunk/; revision=19616
2010-01-22 16:42:54 +00:00
Lluís Batlle i Rossell
fedf79faea
Fixing 'my-env' on stdenv-updates, considering that users will add
...
'buildInputs' to its mkDerivation parameter, while the stdenv setup.sh script
would expect buildNativeInputs.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19615
2010-01-22 15:00:15 +00:00