mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
57 lines
1.3 KiB
Nix
57 lines
1.3 KiB
Nix
{ mkDerivation
|
|
, fetchpatch
|
|
, fetchurl
|
|
, lib
|
|
, extra-cmake-modules
|
|
, kdoctools
|
|
, wrapGAppsHook3
|
|
, exiv2
|
|
, ffmpeg
|
|
, libkdcraw
|
|
, phonon
|
|
, libvlc
|
|
, kconfig
|
|
, kiconthemes
|
|
, kio
|
|
, kinit
|
|
, kpurpose
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "kphotoalbum";
|
|
version = "5.11.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${pname}/${version}/${pname}-${version}.tar.xz";
|
|
hash = "sha256-NWtOIHJXtc8PlltYbbp2YwDf/3QI3MdHNDX7WVQMig4=";
|
|
};
|
|
|
|
# Fix build against exiv2 0.28.1
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://invent.kde.org/graphics/kphotoalbum/-/commit/1ceb1ae37f3f95aa290b0846969af4b26f616760.patch";
|
|
hash = "sha256-SfBJHyJZcysvemc/F09GPczBjcofxGomgjJ814PSU+c=";
|
|
})
|
|
];
|
|
|
|
# not sure if we really need phonon when we have vlc, but on KDE it's bound to
|
|
# be on the system anyway, so there is no real harm including it
|
|
buildInputs = [ exiv2 phonon libvlc ];
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook3 ];
|
|
|
|
propagatedBuildInputs = [ kconfig kiconthemes kio kinit kpurpose libkdcraw ];
|
|
|
|
qtWrapperArgs = [
|
|
"--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Efficient image organization and indexing";
|
|
homepage = "https://www.kphotoalbum.org/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
inherit (kconfig.meta) platforms;
|
|
};
|
|
}
|