2016-02-19 15:12:08 +01:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchurl
|
|
|
|
, extra-cmake-modules
|
|
|
|
, makeQtWrapper
|
|
|
|
, kcmutils
|
|
|
|
, kconfigwidgets
|
|
|
|
, kdbusaddons
|
|
|
|
, kiconthemes
|
|
|
|
, ki18n
|
|
|
|
, knotifications
|
|
|
|
, qca-qt5
|
|
|
|
, libfakekey
|
|
|
|
, libXtst
|
2014-11-03 21:55:33 +01:00
|
|
|
}:
|
2014-06-22 10:56:43 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "kdeconnect-${version}";
|
2016-02-19 15:12:08 +01:00
|
|
|
version = "0.9g";
|
2014-06-22 10:56:43 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-02-19 15:12:08 +01:00
|
|
|
url = http://download.kde.org/unstable/kdeconnect/0.9/src/kdeconnect-kde-0.9g.tar.xz;
|
|
|
|
sha256 = "4033754057bbc993b1d4350959afbe1d17a4f1e56dd60c6df6abca5a321ee1b8";
|
2014-06-22 10:56:43 +02:00
|
|
|
};
|
|
|
|
|
2016-02-19 15:12:08 +01:00
|
|
|
buildInputs = [
|
|
|
|
kcmutils
|
|
|
|
kconfigwidgets
|
|
|
|
kdbusaddons
|
|
|
|
qca-qt5
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
knotifications
|
|
|
|
libfakekey
|
|
|
|
libXtst
|
|
|
|
];
|
2015-09-27 17:11:01 +02:00
|
|
|
|
2016-02-19 15:12:08 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
extra-cmake-modules
|
|
|
|
makeQtWrapper
|
|
|
|
];
|
2014-06-22 10:56:43 +02:00
|
|
|
|
2016-02-19 15:12:08 +01:00
|
|
|
postInstall = ''
|
|
|
|
wrapQtProgram "$out/bin/kdeconnect-cli"
|
|
|
|
'';
|
2014-06-22 10:56:43 +02:00
|
|
|
|
2016-02-19 15:12:08 +01: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 10:56:43 +02:00
|
|
|
};
|
2016-02-19 15:12:08 +01:00
|
|
|
|
2014-06-22 10:56:43 +02:00
|
|
|
}
|