Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
477 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
mkKdeDerivation,
pkg-config,
attr,
ebook_tools,
exiv2,
ffmpeg,
kconfig,
kdegraphics-mobipocket,
libappimage,
}:
mkKdeDerivation {
pname = "kfilemetadata";
# Fix installing cmake files into wrong directory
# FIXME(later): upstream
patches = [ ./cmake-install-paths.patch ];
extraNativeBuildInputs = [ pkg-config ];
extraBuildInputs = [
attr
ebook_tools
exiv2
ffmpeg
kconfig
kdegraphics-mobipocket
libappimage
];
}