a3fe61586c
* Removed the KDE version number from all expressions except the top-level default.nix. This makes it easier to upgrade. * Deleted the old l10n versions since there doesn't seem to be a good reason to keep them around. * Don't use replaceChars (slow!) but do the name sanitization in l10n-manifest.sh. svn path=/nixpkgs/trunk/; revision=25760
18 lines
547 B
Nix
18 lines
547 B
Nix
{ kde, cmake, perl, qt4, alsaLib, libvorbis, xineLib, taglib, flac,
|
|
cdparanoia, lame , kdelibs, automoc4, ffmpeg, libmusicbrainz2, libtunepimp }:
|
|
|
|
kde.package {
|
|
|
|
buildInputs = [ cmake perl qt4 alsaLib libvorbis xineLib flac taglib
|
|
cdparanoia lame kdelibs automoc4 ffmpeg libmusicbrainz2 libtunepimp ];
|
|
|
|
meta = {
|
|
description = "KDE Multimedia";
|
|
longDescription = ''
|
|
Contains various Multimedia utilties for KDE such as a movie player and sound volume mixer.
|
|
'';
|
|
license = "GPL";
|
|
kde.name = "kdemultimedia";
|
|
};
|
|
}
|