nixpkgs/pkgs/desktops/kde-4.7/runtime.nix
Eelco Dolstra e482393ad1 * Add kde-runtime. It requires a newer Phonon than provided by Qt, so
add that as well.  Maybe we should build Qt without Phonon to remove
  potential interference...

svn path=/nixpkgs/branches/kde-4.7/; revision=27810
2011-07-17 14:10:41 +00:00

23 lines
564 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ automoc4, cmake, kde, kdelibs, qt4, strigi, soprano, shared_desktop_ontologies
, bzip2, xz, shared_mime_info, libssh, exiv2, attica, phonon, libcanberra
}:
kde.package {
buildInputs =
[ phonon cmake kdelibs qt4 automoc4 strigi soprano
shared_desktop_ontologies bzip2 xz shared_mime_info libssh
exiv2 attica
(libcanberra.override { gtk = null; })
];
# Work around undefined reference to openpty in kioslave/fish/fish.cpp.
NIX_LDFLAGS = "-lutil";
meta = {
license = "LGPL";
kde.name = "kde-runtime";
};
}