Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
68 lines
1.1 KiB
Nix
68 lines
1.1 KiB
Nix
{
|
|
stdenv,
|
|
fetchurl,
|
|
kio-extras,
|
|
cmake,
|
|
libsForQt5,
|
|
samba,
|
|
libssh,
|
|
libmtp,
|
|
libimobiledevice,
|
|
gperf,
|
|
libtirpc,
|
|
openexr,
|
|
taglib,
|
|
libappimage,
|
|
}:
|
|
# kio-extras-kf5 is kind of part of Gear, but also not released all the time,
|
|
# so handle it separately.
|
|
stdenv.mkDerivation rec {
|
|
pname = "kio-extras-kf5";
|
|
version = "24.02.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/release-service/${version}/src/kio-extras-kf5-${version}.tar.xz";
|
|
hash = "sha256-qar1jzuALINBu6HOuVBU+RUFnqRH9Z/8e5M8ynGxKsk=";
|
|
};
|
|
|
|
nativeBuildInputs = with libsForQt5; [
|
|
cmake
|
|
extra-cmake-modules
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = with libsForQt5; [
|
|
qtbase
|
|
|
|
kactivities
|
|
kactivities-stats
|
|
karchive
|
|
kconfig
|
|
kconfigwidgets
|
|
kcoreaddons
|
|
kdbusaddons
|
|
kdnssd
|
|
kdoctools
|
|
kdsoap
|
|
kguiaddons
|
|
ki18n
|
|
kio
|
|
# libkexiv2
|
|
phonon
|
|
solid
|
|
syntax-highlighting
|
|
|
|
samba
|
|
libssh
|
|
libmtp
|
|
libimobiledevice
|
|
gperf
|
|
libtirpc
|
|
openexr
|
|
taglib
|
|
libappimage
|
|
];
|
|
|
|
meta = kio-extras.meta;
|
|
}
|