summary refs log tree commit diff
path: root/pkgs/development/libraries/phonon/default.nix
blob: 6cf63aa757ace63e957e96e748a206cf1ca5c33c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchurl, cmake, automoc4, qt4 }:

stdenv.mkDerivation rec {
  name = "phonon-4.5.0";

  src = fetchurl {
    url = "mirror://kde/stable/phonon/4.5.0/src/${name}.tar.bz2";
    sha256 = "1p2jhxx3ij9xqxvzdz6fm14b83iag9sk940clgj5jnnw00x93s36";
  };

  buildInputs = [ cmake automoc4 qt4 ];

  preConfigure =
    ''
      substituteInPlace CMakeLists.txt \
        --replace 'PHONON_MKSPECS_DIR}' 'CMAKE_INSTALL_PREFIX}/mkspecs'
      substituteInPlace designer/CMakeLists.txt \
        --replace 'QT_PLUGINS_DIR}' 'CMAKE_INSTALL_PREFIX}/lib/qt4/plugins'
    '';

  meta = {
    homepage = http://phonon.kde.org/;
    description = "Multimedia API for Qt";
    license = "LGPLv2";
    platforms = stdenv.lib.platforms.linux;
  };  
}