uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
48
pkgs/applications/video/kmplayer/default.nix
Normal file
48
pkgs/applications/video/kmplayer/default.nix
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
mkDerivation, lib, fetchurl,
|
||||
extra-cmake-modules, makeWrapper,
|
||||
libpthreadstubs, libXdmcp,
|
||||
qtsvg, qtx11extras, ki18n, kdelibs4support, kio, kmediaplayer, kwidgetsaddons,
|
||||
phonon, cairo, mplayer
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
majorMinorVersion = "0.12";
|
||||
patchVersion = "0b";
|
||||
version = "${majorMinorVersion}.${patchVersion}";
|
||||
pname = "kmplayer";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kde/stable/kmplayer/${majorMinorVersion}/kmplayer-${version}.tar.bz2";
|
||||
sha256 = "0wzdxym4fc83wvqyhcwid65yv59a2wvp1lq303cn124mpnlwx62y";
|
||||
};
|
||||
|
||||
patches = [
|
||||
./kmplayer_part-plugin_metadata.patch # Qt 5.9 doesn't like an empty string for the optional "FILE" argument of "Q_PLUGIN_METADATA"
|
||||
./no-docs.patch # Don't build docs due to errors (kdelibs4support propagates kdoctools)
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
sed -i src/kmplayer.desktop \
|
||||
-e "s,^Exec.*,Exec=$out/bin/kmplayer -qwindowtitle %c %i %U,"
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ extra-cmake-modules makeWrapper ];
|
||||
|
||||
buildInputs = [
|
||||
libpthreadstubs libXdmcp
|
||||
qtsvg qtx11extras ki18n kdelibs4support kio kmediaplayer kwidgetsaddons
|
||||
phonon cairo
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/kmplayer --suffix PATH : ${mplayer}/bin
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "MPlayer front-end for KDE";
|
||||
license = with licenses; [ gpl2 lgpl2 fdl12 ];
|
||||
homepage = "https://kmplayer.kde.org/";
|
||||
maintainers = with maintainers; [ sander zraexy ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue