2016-02-19 14:12:08 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchurl
|
|
|
|
, extra-cmake-modules
|
|
|
|
, kcmutils
|
|
|
|
, kconfigwidgets
|
|
|
|
, kdbusaddons
|
|
|
|
, kiconthemes
|
|
|
|
, ki18n
|
|
|
|
, knotifications
|
|
|
|
, qca-qt5
|
|
|
|
, libfakekey
|
|
|
|
, libXtst
|
2017-06-25 08:48:38 +01:00
|
|
|
, qtx11extras
|
2014-11-03 20:55:33 +00:00
|
|
|
}:
|
2014-06-22 09:56:43 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "kdeconnect-${version}";
|
2017-02-20 10:42:07 +00:00
|
|
|
version = "1.0.3";
|
2014-06-22 09:56:43 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-02-20 10:42:07 +00:00
|
|
|
url = "http://download.kde.org/stable/kdeconnect/${version}/src/kdeconnect-kde-${version}.tar.xz";
|
|
|
|
sha256 = "0b40402adw7cqz19fh8zw70f6l7b5p400mw668n3wic4favn27r2";
|
2014-06-22 09:56:43 +01:00
|
|
|
};
|
|
|
|
|
2016-02-19 14:12:08 +00:00
|
|
|
buildInputs = [
|
|
|
|
kcmutils
|
|
|
|
kconfigwidgets
|
|
|
|
kdbusaddons
|
|
|
|
qca-qt5
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
knotifications
|
|
|
|
libfakekey
|
|
|
|
libXtst
|
2017-06-25 08:48:38 +01:00
|
|
|
qtx11extras
|
2016-02-19 14:12:08 +00:00
|
|
|
];
|
2015-09-27 16:11:01 +01:00
|
|
|
|
2017-05-17 20:26:11 +01:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
2014-06-22 09:56:43 +01:00
|
|
|
|
2016-02-19 14:12:08 +00:00
|
|
|
meta = {
|
|
|
|
description = "KDE Connect provides several features to integrate your phone and your computer";
|
|
|
|
license = with lib.licenses; [ gpl2 ];
|
|
|
|
maintainers = with lib.maintainers; [ fridh ];
|
|
|
|
homepage = https://community.kde.org/KDEConnect;
|
2014-06-22 09:56:43 +01:00
|
|
|
};
|
2016-02-19 14:12:08 +00:00
|
|
|
|
2014-06-22 09:56:43 +01:00
|
|
|
}
|