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
18 lines
614 B
Nix
18 lines
614 B
Nix
{stdenv, fetchurl, lib, cmake, qt4, perl, gettext, pango, gtk, dbus_glib, kdelibs, automoc4, phonon}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "kmplayer-0.11.1b";
|
|
src = fetchurl {
|
|
url = http://kmplayer.kde.org/pkgs/kmplayer-0.11.1b.tar.bz2;
|
|
sha256 = "04wzxxa83kxfzpsrllbdgl0kd6jj13kzhdkm2w66s7mpylr88lfi";
|
|
};
|
|
builder = ./builder.sh;
|
|
buildInputs = [ cmake qt4 perl gettext stdenv.gcc.libc pango gtk dbus_glib kdelibs automoc4 phonon ];
|
|
meta = {
|
|
description = "MPlayer front-end for KDE";
|
|
license = "GPL";
|
|
homepage = http://kmplayer.kde.org;
|
|
maintainers = [ lib.maintainers.sander ];
|
|
};
|
|
}
|