ffcac187e8
I patched properly their own copy of cmake findqt4 module, the same way as we had to do in the cmake expression. The findqt4 patch we have is already filled in the cmake buglist, but it seems it is still not solved in in cmake 2.8.0 svn path=/nixpkgs/trunk/; revision=19960
22 lines
798 B
Nix
22 lines
798 B
Nix
{ stdenv, fetchurl, lib, cmake, perl, qt4, alsaLib, libvorbis, xineLib, taglib, flac, cdparanoia, lame
|
|
, kdelibs, kdelibs_experimental, automoc4, phonon}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "kdemultimedia-4.3.4";
|
|
src = fetchurl {
|
|
url = mirror://kde/stable/4.3.4/src/kdemultimedia-4.3.4.tar.bz2;
|
|
sha1 = "cf8f2696267ec682ee48fbb0f6171d9e9f7aa4b3";
|
|
};
|
|
buildInputs = [ cmake perl qt4 alsaLib libvorbis xineLib flac taglib cdparanoia lame
|
|
kdelibs kdelibs_experimental automoc4 phonon ];
|
|
meta = {
|
|
description = "KDE Multimedia";
|
|
longDescription = ''
|
|
Contains various Multimedia utilties for KDE such as a movie player and sound volume mixer.
|
|
'';
|
|
license = "GPL";
|
|
homepage = http://www.kde.org;
|
|
maintainers = [ lib.maintainers.sander ];
|
|
};
|
|
}
|