We must explicitly give the "--with-install-cups" option at configure time to
get the gstoraster filter installed.
svn path=/nixpkgs/trunk/; revision=31487
- Merged the builder.sh file into the expression itself.
- Need to force "-lz" flag to fix linker errors. This is probably a bug
in the build system, so further updates may not need that hack.
- Need to force "-rpath=${freetype}/lib" flag to fix run-time errors
because gs can't find the libfreetype.so.6 library. I don't quite
understand why that path isn't hard-coded to begin with.
svn path=/nixpkgs/trunk/; revision=31247
Fix sane-backends to generate udev rules, add a snapshot of sane-backends's unstable repo, and add a SANE nixos module
svn path=/nixpkgs/trunk/; revision=30764
There were conflicting patches of pkgs/os-specific/linux/module-init-tools.
Apparently, the expression was updated independently in both branches. I've
resolved the conflict by preferring the patches from stdenv-updates, because
those patches appeared to be more sophisticated, i.e. they build the manual,
etc.
svn path=/nixpkgs/branches/stdenv-updates/; revision=29680
What I did was to add two versions of the same package into the same
collection, i.e. ghc-7.0.4 and ghc-7.2.1. I was surprised to see the
build succeed, because there are file collisions between these two. So I
(wrongly) assumed that the collection function was to blame, but in fact
this is a "feature" of nix-env. Apparently, file collision detection
doesn't take place when the user installs two versions of the same
package simultaneously. File collisions are detected only between
different packages!
For example, the command
nix-env -i ghc-7.0.4 ghc-7.2.1-wrapper
is going to fail, but
nix-env -i ghc-7.0.4-wrapper ghc-7.2.1-wrapper
is going to succeed. Maybe I just didn't read the documentation
thoroughly enough, but this behavior sure is unexpected to me.
svn path=/nixpkgs/trunk/; revision=28638
* Fixed the hash in PulseAudio: I updated the name/version, but forgot
to update the hash. So secretly it was still building the old
version. Also, now that we've realised that the PulseAudio server
and library don't need to be the same build, disable some
dependencies by default (avahi and bluez).
svn path=/nixpkgs/branches/kde-4.7/; revision=28023
- Generate a forwarder scripts only for executable files. This change
removes the broken 'man' script, for example.
- Run the real binaries with 'exec'.
- Use $SHELL to interpret the forwarder scripts rather than /bin/sh.
- Indent consistently with blanks.
- Removed some debug output from the build expression.
svn path=/nixpkgs/trunk/; revision=27679