Commit graph

1458 commits

Author SHA1 Message Date
Eelco Dolstra a0e87d6123 * Added ATerm 2.7. It doesn't work though (make check fails on x86_64).
svn path=/nixpkgs/trunk/; revision=12764
2008-08-29 11:48:44 +00:00
Eelco Dolstra 6c2cbbbe87 * Updated Audacious and its dependencies.
svn path=/nixpkgs/trunk/; revision=12763
2008-08-29 11:31:16 +00:00
Peter Simons 9be673de5e Added maybench, an automated benchmarking tool. The tool depends on benchpress,
a Haskell library for timed command execution.

For starters, the expression lives in development/libraries/haskell/maybench.
It doesn't really belong there because, though, because, technically, it's an
executable, not a library. If someone has a better idea, please feel free to
move it.

svn path=/nixpkgs/trunk/; revision=12761
2008-08-29 09:05:49 +00:00
Eelco Dolstra cee9051b7c * Get rid of $findUnpacker, it's pointless anyway.
* Pass the source file to $unpackCmd via $curSrc.

svn path=/nixpkgs/trunk/; revision=12748
2008-08-27 15:22:33 +00:00
Eelco Dolstra fc980b49f9 * Test setting $sourceRoot directly.
svn path=/nixpkgs/trunk/; revision=12746
2008-08-27 14:56:59 +00:00
Eelco Dolstra 86173ade50 * Rogue 5.4.4.
svn path=/nixpkgs/trunk/; revision=12745
2008-08-27 14:48:28 +00:00
Nicolas Pierron 6a9944cdd9 pcmcia-utils:
- Fix udev rules.
- Accept multiple firmwares.
- Allow redefinition of arguments.

svn path=/nixpkgs/trunk/; revision=12741
2008-08-27 13:59:33 +00:00
Eelco Dolstra 5e5eeedaa6 * Quick proof-of-concept of making it easy to override package
configuration options in ~/.nixpkgs/config.nix.  Example:

  {
    packageOverrides = pkgs: {
      subversion = pkgs.subversion.function (origArgs: {
        bdbSupport = false;
        pythonBindings = !origArgs.pythonBindings;
      });
    };
  }

  I.e. pkgs.subversion.function is the original function call to the
  Subversion function in all-packages.nix.

  This requires the "subversion" attribute to use makeOverridable,
  which stores the original function and function arguments in the
  "function" attribute of the result.

svn path=/nixpkgs/trunk/; revision=12728
2008-08-26 16:50:33 +00:00
Eelco Dolstra 6dbbd93d03 * Allow packages to be overriden globally via the `packageOverrides'
configuration option.  For instance, to override GCC globally for
  all of Nixpkgs, you can put the following in ~/.nixpkgs/config.nix:

  {
    packageOverrides = pkgs: {
      gcc = pkgs.gcc41;
    }
  }

  This should make a lot of configuration support in Nixpkgs
  unnecessary, like selectVersion and many little-used configuration
  options.

  It also provides a somewhat convenient place to put custom,
  private additions to Nixpkgs, e.g.

  {
    packageOverrides = pkgs: {
      myHello = pkgs.stdenv.mkDerivation {
        name = "my-hello-0.1";
        buildCommand = ...;
      };
    };
  };

  Note that this requires Nix >= 0.12pre12726.

* Removed the `myPackages' option `packageOverrides' obsoletes it.

svn path=/nixpkgs/trunk/; revision=12727
2008-08-26 15:35:00 +00:00
Peter Simons f6374fbc5b Add recent versions of the Haskell libraries HTTP, HaXml, haxr, and haxr-th. Unfortunately, the latter library doesn't build successfully because of the following error:
Setup: ../LICENSE: copyFile: does not exist (No such file or directory)

I'm not sure where this comes from. Also, it seems that passing haxr-th the
library haxr as a build input doesn't suffice; it also needs to be passed the
libraries that haxr depends on to configure successfully. Something isn't
right. Andreas, do you know how to fix this?

svn path=/nixpkgs/trunk/; revision=12722
2008-08-26 12:50:03 +00:00
Michael Raskin 988a1f1ef3 One more bison inheritance fix
svn path=/nixpkgs/trunk/; revision=12713
2008-08-25 17:55:09 +00:00
Ludovic Courtès 956a4e1ed2 Add Cscope, a C code browser.
svn path=/nixpkgs/trunk/; revision=12711
2008-08-25 15:34:14 +00:00
Michael Raskin dbce08a664 Minor fix of "inherit"s.
svn path=/nixpkgs/trunk/; revision=12708
2008-08-25 14:52:53 +00:00
Peter Simons 2d7a15266f bison: use version 2.3 by default (the latest)
svn path=/nixpkgs/trunk/; revision=12703
2008-08-25 13:25:07 +00:00
Peter Simons 0ee3317bc5 boost: added version 1.36.0
Also added support for expat library (used by the graph library). This package
should probably be built on the compile farm because it takes quite a while to
complete, even on a fast machine. Having pre-built binaries would be very nice.

svn path=/nixpkgs/trunk/; revision=12702
2008-08-25 10:00:46 +00:00
Ludovic Courtès eddce10d13 Add GNUnet, GNU's anonymous peer-to-peer communication framework.
svn path=/nixpkgs/trunk/; revision=12699
2008-08-24 18:48:09 +00:00
Ludovic Courtès 3328fd9d3d Add Sparse, a static analysis tool for C.
svn path=/nixpkgs/trunk/; revision=12696
2008-08-22 18:33:52 +00:00
Eelco Dolstra f27856e3fa * KVM 73.
svn path=/nixpkgs/trunk/; revision=12689
2008-08-22 10:51:37 +00:00
Marc Weber 3091c81082 tm (terminal mixer), ts (task spooler) added, provided by viric
svn path=/nixpkgs/trunk/; revision=12688
2008-08-21 21:35:14 +00:00
Marc Weber 01979f7940 add window-manager dwm contributed by viric
svn path=/nixpkgs/trunk/; revision=12687
2008-08-21 20:44:08 +00:00
Marc Weber 2d354aa6f1 added ngspice
svn path=/nixpkgs/trunk/; revision=12686
2008-08-21 20:43:53 +00:00
Marc Weber a98da2c748 rename devEnvs -> myPackgages in all-packages.nix
The usage is not tight to devEnvs, you can add arbitrary
packages to .nixpkgs/config.nix this way

svn path=/nixpkgs/trunk/; revision=12685
2008-08-21 20:43:37 +00:00
Marc Weber c4270fb9b8 moved hasktags to ghc68executables, updated url to new location
svn path=/nixpkgs/trunk/; revision=12680
2008-08-21 11:07:44 +00:00
Marc Weber 0686eecf4f slsnif-0.4.4 added
svn path=/nixpkgs/trunk/; revision=12679
2008-08-21 11:07:29 +00:00
Ludovic Courtès d4e5ed0596 Add EMMS, the Emacs Multimedia System.
svn path=/nixpkgs/trunk/; revision=12675
2008-08-21 08:58:51 +00:00
Marc Weber 9075ea2218 moved nix-repository-manager to add additional feature automatically updating given bleeding-edge-fetch-infos.nix
svn path=/nixpkgs/trunk/; revision=12658
2008-08-19 12:36:00 +00:00
Michael Raskin 87ff8d6347 Changed builderDefs to use composedArgsAndFun, reduced number of nulls, made overrides in builderDefsPackage to work in an intuitive manner.
svn path=/nixpkgs/trunk/; revision=12655
2008-08-19 05:54:09 +00:00
Marc Weber fea2f910e5 snd shows it's help in firefox now
svn path=/nixpkgs/trunk/; revision=12651
2008-08-18 16:03:38 +00:00
Marc Weber 9a0fc0863b added qjackctl
svn path=/nixpkgs/trunk/; revision=12650
2008-08-18 16:03:21 +00:00
Marc Weber ba6c703918 jackaudio connection kit (jackd) is back
svn path=/nixpkgs/trunk/; revision=12649
2008-08-18 16:03:04 +00:00
Marc Weber 5479dfea93 added beast Sound Engine
svn path=/nixpkgs/trunk/; revision=12647
2008-08-18 10:50:16 +00:00
Michael Raskin 1e33a71c90 A small function not unlike symlinkJoin.
svn path=/nixpkgs/trunk/; revision=12641
2008-08-16 18:48:50 +00:00
Eelco Dolstra 77ce75b095 * Disable splashutils on x86_64 for now; it fails to link statically
because of an issue in Glibc (see
  http://bugs.gentoo.org/show_bug.cgi?id=198949).

svn path=/nixpkgs/trunk/; revision=12635
2008-08-15 14:18:11 +00:00
Eelco Dolstra 85897fa31a * iptables updated to 1.4.1.1.
svn path=/nixpkgs/trunk/; revision=12630
2008-08-15 09:49:43 +00:00
Michael Raskin f1f9e38e94 Big breaking change. I have radically reduced number of nulls used in all-packages.nix and generally switched to composedArgsAndFun which simply adds .meta.function to everything that has come through it.. I have not tested the build, because OO.o has to be updated...
svn path=/nixpkgs/trunk/; revision=12625
2008-08-14 22:04:30 +00:00
Ludovic Courtès a8b28c34af Try out expression for OpenOffice.org 2.4.1.
Warning: I have *not* built it locally, so the main purpose is
to run the whole build on the build farm, hoping it won't fail.
Feel free to fix or revert if it does.

svn path=/nixpkgs/trunk/; revision=12622
2008-08-14 15:09:41 +00:00
Michael Raskin 61b285d660 Added xnee utility for X11 action recording
svn path=/nixpkgs/trunk/; revision=12612
2008-08-14 09:25:26 +00:00
Ludovic Courtès 2f5212ef5a Add KeyJnote, a nifty presentation tool.
svn path=/nixpkgs/trunk/; revision=12610
2008-08-13 09:15:14 +00:00
Eelco Dolstra 7493ae8010 * Added convertlit, a tool for converting Microsoft Reader ebooks,
plus its dependency libtommath.

svn path=/nixpkgs/trunk/; revision=12606
2008-08-12 19:57:35 +00:00
Ludovic Courtès 135147ca6c Fix invocation of the PIL expression.
svn path=/nixpkgs/trunk/; revision=12600
2008-08-12 15:43:36 +00:00
Ludovic Courtès cf56d20b0d Remove duplicate expression for PIL (Python Imaging Library).
svn path=/nixpkgs/trunk/; revision=12599
2008-08-12 15:42:21 +00:00
Ludovic Courtès 61c0f30155 Add PyOpenGL.
svn path=/nixpkgs/trunk/; revision=12598
2008-08-12 15:40:01 +00:00
Ludovic Courtès 9c161c21e7 Add PIL, the Python Imaging Library.
svn path=/nixpkgs/trunk/; revision=12597
2008-08-12 15:10:53 +00:00
Michael Raskin eb50dd2c0d Added StumpWM
svn path=/nixpkgs/trunk/; revision=12566
2008-08-09 20:21:33 +00:00
Michael Raskin 83509605b3 Added possibility to change klibc version
svn path=/nixpkgs/trunk/; revision=12563
2008-08-09 08:40:37 +00:00
Michael Raskin abe260b6c5 Now CLisp builds with full CLX (XShape included)
svn path=/nixpkgs/trunk/; revision=12559
2008-08-08 22:37:37 +00:00
Eelco Dolstra a9d19f45db * A function `useKlibc' to build a package using klibc as the C
library.
* Removed devicemapperStatic, e2fsprogsDiet, lvm2Static since they're
  redundant (it's what you get when you use pkgsDiet/pkgsStatic).

svn path=/nixpkgs/trunk/; revision=12554
2008-08-08 19:05:32 +00:00
Eelco Dolstra 3dc0ad3aa9 * KVM no longer needs GCC 3.4.
svn path=/nixpkgs/trunk/; revision=12542
2008-08-08 11:53:01 +00:00
Eelco Dolstra d4f7a93f31 * KVM 72, plus stable 2.6.26 kernel headers (needed for KVM).
svn path=/nixpkgs/trunk/; revision=12541
2008-08-08 11:49:06 +00:00
Michael Raskin aaba3d2440 Added lincity - a city simulation. And if I build houses, I build houses here.
svn path=/nixpkgs/trunk/; revision=12539
2008-08-08 07:16:34 +00:00