3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/kdeconnect/default.nix

50 lines
951 B
Nix
Raw Normal View History

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
}:
stdenv.mkDerivation rec {
2017-10-10 19:30:34 +01:00
pname = "kdeconnect";
version = "1.2";
name = "${pname}-${version}";
src = fetchurl {
2017-10-10 19:30:34 +01:00
url = "mirror://kde/stable/${pname}/${version}/src/${pname}-kde-${version}.tar.xz";
sha256 = "0w3rdldnr6md70r4ch255vk712d37vy63ml7ly2fhr4cfnk2i1ay";
};
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
];
2017-05-17 20:26:11 +01:00
nativeBuildInputs = [ extra-cmake-modules ];
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;
};
2016-02-19 14:12:08 +00:00
}