Commit graph

3787 commits

Author SHA1 Message Date
Lluís Batlle i Rossell cc068f0be8 Adding the itk libraries.
Adding a skeleton of the seg3d package. It builds, but libraries and rpaths are wrong.
I hope to fix it soon.

svn path=/nixpkgs/trunk/; revision=20320
2010-03-01 23:31:35 +00:00
Lluís Batlle i Rossell eb047010f8 Trying to get a better expression for uboot upstream, allowing normal and cross build
with proper assertions.


svn path=/nixpkgs/trunk/; revision=20319
2010-03-01 23:22:48 +00:00
Ludovic Courtès a86e0ad8aa pyopengl: Move to `python-packages.nix'.
svn path=/nixpkgs/trunk/; revision=20317
2010-03-01 17:08:25 +00:00
Ludovic Courtès b36dbdf2c4 ExifTool 8.12.
svn path=/nixpkgs/trunk/; revision=20314
2010-03-01 17:08:12 +00:00
Rob Vermaas f3f922f474 ecj for darwin
svn path=/nixpkgs/trunk/; revision=20311
2010-03-01 16:20:47 +00:00
Lluís Batlle i Rossell 152a0c97fa Adding kernelArch to platforms.pc. Needed to make the release.nix tarball happy.
svn path=/nixpkgs/trunk/; revision=20308
2010-03-01 14:06:48 +00:00
Lluís Batlle i Rossell 38a19b7202 Adding the pc kernel headers base config, for the new linux kernel headers to build.
svn path=/nixpkgs/trunk/; revision=20307
2010-03-01 13:12:57 +00:00
Ludovic Courtès 67b7a89daf Move zope.interface' to python-packages.nix'.
svn path=/nixpkgs/trunk/; revision=20305
2010-03-01 13:12:52 +00:00
Ludovic Courtès ff88e57803 GNU Parted 2.2.
svn path=/nixpkgs/trunk/; revision=20304
2010-03-01 13:12:48 +00:00
Rob Vermaas dfca3bc039 set meta.platforms to get rid of hydra evaluation errors (assertions)
svn path=/nixpkgs/trunk/; revision=20301
2010-03-01 12:23:49 +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
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 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 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 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
Eelco Dolstra 61c9c2434f * Updated fbcondecor for Linux 2.6.33.
svn path=/nixpkgs/trunk/; revision=20257
2010-02-25 14:15:42 +00:00
Rob Vermaas e9404a5d83 * remove sawmill
svn path=/nixpkgs/trunk/; revision=20252
2010-02-25 13:28:36 +00:00
Eelco Dolstra e04c9a452a * Linux 2.6.33.
svn path=/nixpkgs/trunk/; revision=20246
2010-02-25 12:40:03 +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
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 f90ab6394b Make Vim expression overridable
svn path=/nixpkgs/trunk/; revision=20201
2010-02-23 18:29:11 +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
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
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 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
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 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 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
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 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
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
Lluís Batlle i Rossell 7506ae348d Updating qemu
svn path=/nixpkgs/trunk/; revision=20115
2010-02-18 18:42:11 +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
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 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
Marc Weber f57a5d2273 libXi: build man pages
svn path=/nixpkgs/trunk/; revision=20089
2010-02-18 01:49:53 +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
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
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
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
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 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
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
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
Eelco Dolstra 1d2c0eea75 svn path=/nixpkgs/trunk/; revision=19991 2010-02-14 16:21:42 +00:00
Ludovic Courtès 62665b519e Add GNU TeXmacs.
svn path=/nixpkgs/trunk/; revision=19985
2010-02-13 19:22:16 +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 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 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
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
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 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
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
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 7e7218cf80 * Fixed Genshi.
svn path=/nixpkgs/trunk/; revision=19899
2010-02-10 12:11:37 +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
Alexander Tsamutali 1d6086a742 games/warsow: Needs libjpeg62.
svn path=/nixpkgs/trunk/; revision=19891
2010-02-09 23:12:47 +00:00
Rob Vermaas a5cecee12e added libmilter, opendkim
svn path=/nixpkgs/trunk/; revision=19875
2010-02-09 10:32:55 +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
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
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
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
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
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
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
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
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
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
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 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 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
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 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
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 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
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
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
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 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 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
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
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 af9c358226 * Update some broken Perl packages.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19676
2010-01-26 15:15:58 +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 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
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
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
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 41030334dd adding w3c CSS validator
svn path=/nixpkgs/trunk/; revision=19635
2010-01-24 15:39:42 +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 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
Ludovic Courtès 14ef547359 Add GNU Gengetopt.
svn path=/nixpkgs/trunk/; revision=19618
2010-01-22 17:00:44 +00:00
Lluís Batlle i Rossell 94ed14ccef Trying to add a cross build to hydra: bisonSheevaplug
svn path=/nixpkgs/branches/stdenv-updates/; revision=19614
2010-01-22 14:59:27 +00:00
Ludovic Courtès 2ae7ffd707 foolscap: Disable checks.
svn path=/nixpkgs/trunk/; revision=19608
2010-01-22 08:55:09 +00:00
Eelco Dolstra c7194fe7cf * Added Firefox 3.6. It's not entirely stable yet though. In
particular it segfaults with the `-P' option.

svn path=/nixpkgs/trunk/; revision=19606
2010-01-21 22:23:59 +00:00
Eelco Dolstra ed3ebb7c2c * libjpeg updated to version 8.
* libpng updated to 1.4.0.
* For libjpegStatic, use a stdenv adapter to build a static library.

svn path=/nixpkgs/branches/stdenv-updates/; revision=19605
2010-01-21 21:42:17 +00:00
Eelco Dolstra b8f106abd7 * Throw away some old versions of Firefox.
svn path=/nixpkgs/trunk/; revision=19604
2010-01-21 21:14:22 +00:00
Ludovic Courtès 16dec99054 Add GNU mkisofs.
svn path=/nixpkgs/trunk/; revision=19603
2010-01-21 16:53:16 +00:00
Peter Simons 05868b3046 pkgs/development/tools/misc/distcc: optionally, build static binaries without any dependencies
Using nix-pkgs.conf, it is possible to disable avahi, python, and all other
optional dependencies of distcc in order to generate binaries that are as small
and simple as possible. Furthermore, there is now an option for static linking.

svn path=/nixpkgs/trunk/; revision=19599
2010-01-21 15:40:43 +00:00
Peter Simons 8b4f33ac76 pkgs/top-level/all-packages.nix: switch to Python 2.6 (except on Darwin)
MacOS X can build Python 2.6 just fine, but for some reason a lot of modules
don't work, so the resulting binary isn't very useful.

svn path=/nixpkgs/branches/stdenv-updates/; revision=19598
2010-01-21 15:39:11 +00:00
Lluís Batlle i Rossell a3e4c7640f Updating meshlab.
Their build system has changed, and the source tree they distribute too, so the
dependencies changed a bit.
To get meshlab working, I update lib3ds and add levmar.

svn path=/nixpkgs/trunk/; revision=19595
2010-01-21 14:39:53 +00:00
Eelco Dolstra cdf8259bb3 svn path=/nixpkgs/trunk/; revision=19588 2010-01-21 07:39:36 +00:00
Eelco Dolstra f724089f6f * Added a bundle of CA certificates, useful for e.g. curl.
svn path=/nixpkgs/trunk/; revision=19571
2010-01-20 14:10:26 +00:00
Eelco Dolstra b5f288c412 * Revert to the Linux 2.6.28 headers because 2.6.32 gives more
problems than it's worth (e.g. build failures in strace and klibc -
  see also http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=538372).

svn path=/nixpkgs/branches/stdenv-updates/; revision=19562
2010-01-20 10:56:40 +00:00
Rob Vermaas 0577bc6bf1 add grub2 to channel
svn path=/nixpkgs/trunk/; revision=19558
2010-01-20 09:39:08 +00:00
Michael Raskin ef4198ec8d ECL entry in all-packages
svn path=/nixpkgs/trunk/; revision=19556
2010-01-20 05:41:18 +00:00
Eelco Dolstra 1d6d92c9a1 * Make Valgrind compile with Glibc 2.11.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19554
2010-01-19 22:27:07 +00:00
Eelco Dolstra 93b250b960 * Use the Linux 2.6.32 kernel headers.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19552
2010-01-19 18:02:37 +00:00
Eelco Dolstra cea86564ff * Fix gmpxx.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19550
2010-01-19 17:44:59 +00:00
Eelco Dolstra 4e65c8aa2a * Use patchelf 0.5.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19548
2010-01-19 17:15:47 +00:00
Eelco Dolstra 8cd183f062 * Disable Graphite in GCC, as discussed on the mailing list.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19547
2010-01-19 17:10:53 +00:00
Peter Simons 35424c8836 pkgs/tools/system/ipmitool/default.nix: add openssl dependency to enable lanplus protocol
svn path=/nixpkgs/trunk/; revision=19543
2010-01-19 16:21:40 +00:00
Peter Simons 81324b5de0 pkgs/tools/system/ipmitool: command-line interface to IPMI-enabled devices
Initial version 1.8.9.

svn path=/nixpkgs/trunk/; revision=19542
2010-01-19 15:58:19 +00:00
Eelco Dolstra 231b016142 * During the bootstrap, build only 1 instance of Perl instead of 3.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19536
2010-01-19 11:25:33 +00:00
Ludovic Courtès 7eadcd46a0 Build `gitFull'.
svn path=/nixpkgs/trunk/; revision=19528
2010-01-18 17:22:58 +00:00
Ludovic Courtès b8bb0ce6dd Add `gitFull'.
svn path=/nixpkgs/trunk/; revision=19525
2010-01-18 16:07:44 +00:00
Rob Vermaas 0ca38abd82 PadWalker perl module for easier debugging of perl
svn path=/nixpkgs/trunk/; revision=19515
2010-01-18 10:37:37 +00:00
Eelco Dolstra 7c7f9b63ad * kbd 1.15.1.
svn path=/nixpkgs/trunk/; revision=19514
2010-01-18 10:19:11 +00:00
Lluís Batlle i Rossell bfbaa73706 Making 'release.nix' point to linuxPackages, and not to kernelPackages (the new
linux naming in stdenv-updates)


svn path=/nixpkgs/branches/stdenv-updates/; revision=19506
2010-01-17 22:09:16 +00:00
Lluís Batlle i Rossell 47735a06c3 Adding rawtherapee svn r25
svn path=/nixpkgs/trunk/; revision=19500
2010-01-17 17:49:35 +00:00
Alexander Tsamutali b207890b81 applications/misc/epdfview: New package.
svn path=/nixpkgs/trunk/; revision=19498
2010-01-17 01:39:29 +00:00
Lluís Batlle i Rossell 2ab641c39e Adding libiptcdata.
I'm attempting to build rawtherapee, but it wants the propietary library 'rawzor'.
Maybe upstream someone will allow building without it some day. Until then, no
rawtherapee.

svn path=/nixpkgs/trunk/; revision=19497
2010-01-17 00:46:57 +00:00
Lluís Batlle i Rossell 08eb3243c9 Merging the ghdl-wrapper and gcc-wrapper into one.
I will remove the ghdl-wrapper files later, if all this works.


svn path=/nixpkgs/branches/stdenv-updates/; revision=19493
2010-01-16 21:41:27 +00:00
Lluís Batlle i Rossell e72908036f Merging the gnat-wrapper and gcc-wrapper into a single gcc-wrapper.
(I will remove the gnat-wrapper files if this works, later)


svn path=/nixpkgs/branches/stdenv-updates/; revision=19492
2010-01-16 21:32:44 +00:00
Lluís Batlle i Rossell 20e75e0cf0 Fixing the gcc-wrapper, so it does not link when gcc is called with '-x
something'.
It should not link at least for '-x c-header' and '-x c++-header', and maybe
link for '-x c' or '-x c++', but we expect noone will be linking using these
later strings.

Adding opencv, which required '-x c-header' working, and that's why I have
updated gcc wrapper.


svn path=/nixpkgs/branches/stdenv-updates/; revision=19491
2010-01-16 21:26:10 +00:00
Lluís Batlle i Rossell 063ef1925d Adding digikam and kipi-plugins for kde4.
svn path=/nixpkgs/trunk/; revision=19488
2010-01-16 20:13:20 +00:00
Lluís Batlle i Rossell df68759142 Updating from trunk, to get the new mldonkey.
Cleaning the mldonkey expression to build with the ocaml native compiler in some
platforms, and with the bytecode in others.
Removing the flag to support ocaml-3.11.1, as it is included in this new
version of mldonkey.


svn path=/nixpkgs/branches/stdenv-updates/; revision=19487
2010-01-16 16:41:33 +00:00
Lluís Batlle i Rossell 68c9d127ed Updating mldonkey, and adding more build-type add-ons.
svn path=/nixpkgs/trunk/; revision=19486
2010-01-16 16:31:52 +00:00
Lluís Batlle i Rossell 70dd97620c Updating from trunk
svn path=/nixpkgs/branches/stdenv-updates/; revision=19485
2010-01-16 15:19:23 +00:00
Lluís Batlle i Rossell 15083226fd Fixing the evaluation of inotify-tools by hydra (release.nix)
svn path=/nixpkgs/trunk/; revision=19484
2010-01-16 15:12:33 +00:00
Nicolas Pierron 841e48d19b Add libyaml and PyYAML.
svn path=/nixpkgs/trunk/; revision=19477
2010-01-16 10:37:29 +00:00
Lluís Batlle i Rossell 61be82ffd0 Updating the ghdl related expressions:
- Adding ghdl with gcc 4.4 (with a patch I built for it to work)
- Adding me as maintainer to both gccs and ghdl


svn path=/nixpkgs/branches/stdenv-updates/; revision=19475
2010-01-15 23:22:28 +00:00
Marc Weber 11f8b98ccc adding inotify-tools
svn path=/nixpkgs/trunk/; revision=19469
2010-01-15 19:35:02 +00:00
Michael Raskin c210665b4a SGT Puzzles now need Perl for Makefile generation
svn path=/nixpkgs/trunk/; revision=19466
2010-01-15 12:00:12 +00:00
Lluís Batlle i Rossell 5cbdbce01b Fixing the url for the python package 'dateutil', for 'calibrate' to build.
svn path=/nixpkgs/trunk/; revision=19453
2010-01-15 00:02:13 +00:00
Lluís Batlle i Rossell 742a4b5191 Adding a global wrapper that provides the user with ready-to-use opensc tools and
a 'firefox-dnie' that will launch the firefox in the path with the proper
environment variables to allow firefox access the Spanish national id SmartCard
as a Security Device.
For the later to work cleanly, it will require the user to enable the opensc-pkcs11
module as Security Devices in firefox.

svn path=/nixpkgs/trunk/; revision=19452
2010-01-14 23:43:56 +00:00
Lluís Batlle i Rossell 2ef0816647 Moving the library nixpkgs file/attribute names from 'opensc-dnie' to 'libopensc-dnie'
svn path=/nixpkgs/trunk/; revision=19451
2010-01-14 23:21:46 +00:00
Lluís Batlle i Rossell aaa4eafcbf Moving most of the ghdl logic outside the middle of the gcc expression.
Agreed on a final naming logic for the ghdl package: ghdl-wrapper-0.29


svn path=/nixpkgs/branches/stdenv-updates/; revision=19450
2010-01-14 23:03:31 +00:00
Lluís Batlle i Rossell f29068a1de Adding the pinentry dependency to opensc, so it properly calls at least one pinentry.
The upstream opensc 0.11.7 does not allow choosing it at runtime!


svn path=/nixpkgs/trunk/; revision=19449
2010-01-14 22:47:30 +00:00
Rob Vermaas b1e3a16f2f make qtscriptgenerator overridable
svn path=/nixpkgs/trunk/; revision=19439
2010-01-14 14:51:02 +00:00
Lluís Batlle i Rossell 9183f21f7e Merging from trunk.
I fixed conflicts regarding the renaming 'kernel' -> 'linux' in all-packages.
Also a small conflict in all-packages about making openssl overridable.
And I some linux 2.6.31-zen kernel files also marked in conflict.


svn path=/nixpkgs/branches/stdenv-updates/; revision=19438
2010-01-14 14:49:31 +00:00
Eelco Dolstra c63858a169 * Fix the path to bash.
* Add openssl as a dependency.

svn path=/nixpkgs/trunk/; revision=19436
2010-01-14 14:26:35 +00:00
Michael Raskin 3f30914672 Update wine dependency on flex and add myself as maintainer
svn path=/nixpkgs/trunk/; revision=19433
2010-01-14 13:17:40 +00:00
Rob Vermaas cec84b8a63 fixes for netpbm, provided by griswold
svn path=/nixpkgs/trunk/; revision=19413
2010-01-13 21:16:12 +00:00
Rob Vermaas 227106febb newer version Variable-Magic (0.36)
svn path=/nixpkgs/trunk/; revision=19412
2010-01-13 21:14:42 +00:00
Rob Vermaas 675a8ed9d8 ncompress provided by griswold
svn path=/nixpkgs/trunk/; revision=19410
2010-01-13 21:11:48 +00:00
Rob Vermaas a6cd7eb8a1 dos2unix and unix2dos provided by griswold
svn path=/nixpkgs/trunk/; revision=19409
2010-01-13 21:09:55 +00:00
Michael Raskin 32cec049d3 Update Zen kernel set
svn path=/nixpkgs/trunk/; revision=19404
2010-01-13 15:46:38 +00:00
Rob Vermaas 8c29f10134 amazon ec2 ami tools
svn path=/nixpkgs/trunk/; revision=19396
2010-01-13 14:25:45 +00:00
Lluís Batlle i Rossell 33618e21c5 Updating ghdl to 0.29.
I feel impelled to write nicer expressions for it.


svn path=/nixpkgs/branches/stdenv-updates/; revision=19395
2010-01-13 13:50:32 +00:00
Eelco Dolstra 3df8e6662a * Updated ec2-api-tools to the latest version. Also, generate
wrappers that set EC2_HOME and JAVA_HOME.

svn path=/nixpkgs/trunk/; revision=19390
2010-01-13 12:54:26 +00:00
Eelco Dolstra f189022d13 * Updated mesa to 7.6.1.
* Removed mesa-headers as it's not used anymore.

svn path=/nixpkgs/trunk/; revision=19389
2010-01-13 12:43:17 +00:00
Lluís Batlle i Rossell 4672cc340c Adding propietary drivers for the SCM smart card readers.
svn path=/nixpkgs/trunk/; revision=19378
2010-01-12 19:22:22 +00:00
Rob Vermaas e78c7a7189 build qemu_kvm in buildfarm
svn path=/nixpkgs/trunk/; revision=19373
2010-01-12 13:23:21 +00:00
Marc Weber da167ed64f updating haskellPackages was a bad idea. Some packages broke. Revert to privious default.
svn path=/nixpkgs/trunk/; revision=19368
2010-01-12 10:34:20 +00:00
Andres Löh 55e2661690 Updated Agda to 2.2.6.
svn path=/nixpkgs/trunk/; revision=19365
2010-01-12 10:18:00 +00:00
Andres Löh 2a95fb6e96 Add ghc-6.12.1 to release.nix.
svn path=/nixpkgs/trunk/; revision=19363
2010-01-12 09:21:53 +00:00
Ludovic Courtès 8670c51227 Merge the two BuildBot expressions.
svn path=/nixpkgs/trunk/; revision=19358
2010-01-11 17:00:46 +00:00
Ludovic Courtès 266ce78dc8 Add BuildBot.
svn path=/nixpkgs/trunk/; revision=19357
2010-01-11 16:53:58 +00:00
Rob Vermaas 3ea6276d0f make kde43 overridable
svn path=/nixpkgs/trunk/; revision=19354
2010-01-11 15:25:24 +00:00
Armijn Hemel 577f4d8325 update to 2.6.5, also add python dependency for extensions and all that
svn path=/nixpkgs/trunk/; revision=19352
2010-01-11 13:25:05 +00:00
Lluís Batlle i Rossell d4be60ad25 Adding 'wicd' to be built by hydra.
svn path=/nixpkgs/trunk/; revision=19344
2010-01-10 22:02:09 +00:00
Lluís Batlle i Rossell c0033794ba As ludo attented, I remove the 'python-' name prefix for
the dateutil python package.
I initially wrote it because the original name includes it, but
I agree we better don't have it named "python-python-dateutil".


svn path=/nixpkgs/trunk/; revision=19343
2010-01-10 20:31:05 +00:00
Lluís Batlle i Rossell 24a46bbf12 Downgrading the opensc library version to 0.11.7, that required
for the Spanish national id smartcard (DNIe).
Adding the opensc dnie driver.


svn path=/nixpkgs/trunk/; revision=19325
2010-01-10 00:22:29 +00:00
Lluís Batlle i Rossell 000e1c7c22 Adding engine_pkcs11, a openssl engine for pkcs11 implementations for smartcards.
svn path=/nixpkgs/trunk/; revision=19324
2010-01-09 22:22:41 +00:00
Lluís Batlle i Rossell e657b30a51 Adding OpenSC, a pkcs11 interface to smartcards.
svn path=/nixpkgs/trunk/; revision=19322
2010-01-09 21:52:31 +00:00
Lluís Batlle i Rossell 517fdec44b Adding more muscle programs and libraries.
svn path=/nixpkgs/trunk/; revision=19320
2010-01-09 18:06:37 +00:00
Lluís Batlle i Rossell 56cfcdb27f Adding pcsclite with the opensource ccid usb drivers.
This gives a daemon controlling the smartcard reader used to read the
Spanish identity card.


svn path=/nixpkgs/trunk/; revision=19319
2010-01-09 17:35:57 +00:00