mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
2eacddf0dc
* pgadmin: use https homepage * msn-pecan: move homepage to github google code is now unavailable * pidgin-latex: use https for homepage * pidgin-opensteamworks: use github for homepage google code is unavailable * putty: use https for homepage * ponylang: use https for homepage * picolisp: use https for homepage * phonon: use https for homepage * pugixml: use https for homepage * pioneer: use https for homepage * packer: use https for homepage * pokerth: usee https for homepage * procps-ng: use https for homepage * pycaml: use https for homepage * proot: move homepage to .github.io * pius: use https for homepage * pdfread: use https for homepage * postgresql: use https for homepage * ponysay: move homepage to new site * prometheus: use https for homepage * powerdns: use https for homepage * pm-utils: use https for homepage * patchelf: move homepage to https * tesseract: move homepage to github * quodlibet: move homepage from google code * jbrout: move homepage from google code * eiskaltdcpp: move homepage to github * nodejs: use https to homepage * nix: use https for homepage * pdf2djvu: move homepage from google code * game-music-emu: move homepage from google code * vacuum: move homepae from google code
41 lines
1 KiB
Nix
41 lines
1 KiB
Nix
{ stdenv, lib, fetchurl, cmake, phonon, pkgconfig, vlc
|
|
, extra-cmake-modules, qtbase ? null, qtx11extras ? null, qt4 ? null
|
|
, withQt5 ? false
|
|
, debug ? false
|
|
}:
|
|
|
|
with lib;
|
|
|
|
let
|
|
v = "0.9.0";
|
|
pname = "phonon-backend-vlc";
|
|
in
|
|
|
|
assert withQt5 -> qtbase != null;
|
|
assert withQt5 -> qtx11extras != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${if withQt5 then "qt5" else "qt4"}-${v}";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://phonon.kde.org/;
|
|
description = "GStreamer backend for Phonon";
|
|
platforms = platforms.linux;
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/phonon/${pname}/${v}/${pname}-${v}.tar.xz";
|
|
sha256 = "1gnd1j305mqajw5gxm42vg6ajkvi8611bxgc3qhj5k0saz5dgkn0";
|
|
};
|
|
|
|
buildInputs =
|
|
[ phonon vlc ]
|
|
++ (if withQt5 then [ qtbase qtx11extras ] else [ qt4 ]);
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ] ++ optional withQt5 extra-cmake-modules;
|
|
|
|
cmakeFlags =
|
|
[ "-DCMAKE_BUILD_TYPE=${if debug then "Debug" else "Release"}" ]
|
|
++ optional withQt5 "-DPHONON_BUILD_PHONON4QT5=ON";
|
|
}
|