ffbb4d26f9
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/kdeconnect/versions
51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{ mkDerivation
|
|
, lib
|
|
, fetchurl
|
|
, extra-cmake-modules
|
|
, kcmutils
|
|
, kconfigwidgets
|
|
, kdbusaddons
|
|
, kdoctools
|
|
, kiconthemes
|
|
, ki18n
|
|
, knotifications
|
|
, qca-qt5
|
|
, libfakekey
|
|
, libXtst
|
|
, qtx11extras
|
|
, sshfs
|
|
, makeWrapper
|
|
, kwayland
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "kdeconnect";
|
|
version = "1.3.5";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${pname}/${version}/${pname}-kde-${version}.tar.xz";
|
|
sha256 = "02lr3xx5s2mgddac4n3lkgr7ppf1z5m6ajs90rjix0vs8a271kp5";
|
|
};
|
|
|
|
buildInputs = [
|
|
libfakekey libXtst
|
|
ki18n kiconthemes kcmutils kconfigwidgets kdbusaddons knotifications
|
|
qca-qt5 qtx11extras makeWrapper kwayland
|
|
];
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/libexec/kdeconnectd --prefix PATH : ${lib.makeBinPath [ sshfs ]}
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "KDE Connect provides several features to integrate your phone and your computer";
|
|
homepage = https://community.kde.org/KDEConnect;
|
|
license = with licenses; [ gpl2 ];
|
|
maintainers = with maintainers; [ fridh ];
|
|
};
|
|
}
|