Drop unused buildInput

Mark virtuoso as a runtime dependency of kdebase-runtime.
The propagatedUserEnvPackages is not used by buildEnv, but I'm going to let it
use this property (instead of/in addition to)
$prefix/nix-support/propagated-user-env-packages.

svn path=/nixpkgs/trunk/; revision=29162
This commit is contained in:
Yury G. Kudryashov 2011-09-11 07:25:30 +00:00
parent e236848406
commit 134fb92f73

View file

@ -1,15 +1,17 @@
{ kde, kdelibs, shared_desktop_ontologies, bzip2, xz, libssh, exiv2, attica
, libcanberra, virtuoso, makeWrapper, samba
, libcanberra, virtuoso, samba
}:
# TODO: Re-enable ntrack once it is fixed upstream
kde {
buildInputs =
[ kdelibs shared_desktop_ontologies bzip2 xz libssh exiv2 attica virtuoso
makeWrapper samba (libcanberra.override { gtk = null; })
[ kdelibs shared_desktop_ontologies bzip2 xz libssh exiv2 attica
samba (libcanberra.override { gtk = null; })
];
passthru.propagatedUserEnvPackages = [ virtuoso ];
meta = {
license = "LGPL";
};