about summary refs log tree commit diff
path: root/nixpkgs/pkgs/kde/misc/kio-extras-kf5/default.nix
blob: 886ae1a6277715dfcce72eec0ef444b9e3928534 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
  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;
}