summary refs log tree commit diff
path: root/pkgs/development/libraries/libfakekey
diff options
context:
space:
mode:
authorCillian de Róiste <cillian.deroiste@gmail.com>2014-11-03 21:55:33 +0100
committerCillian de Róiste <cillian.deroiste@gmail.com>2014-11-03 21:59:20 +0100
commit3a6a3815e9eb002d0bfd399b18c378e5a9890e4f (patch)
treed29f061138aec233dc578ab0b7c64c30659f0c57 /pkgs/development/libraries/libfakekey
parent29d708176cbcbda3d8619b47361cf02135d201eb (diff)
downloadnixpkgs-3a6a3815e9eb002d0bfd399b18c378e5a9890e4f.tar
nixpkgs-3a6a3815e9eb002d0bfd399b18c378e5a9890e4f.tar.gz
nixpkgs-3a6a3815e9eb002d0bfd399b18c378e5a9890e4f.tar.bz2
nixpkgs-3a6a3815e9eb002d0bfd399b18c378e5a9890e4f.tar.lz
nixpkgs-3a6a3815e9eb002d0bfd399b18c378e5a9890e4f.tar.xz
nixpkgs-3a6a3815e9eb002d0bfd399b18c378e5a9890e4f.tar.zst
nixpkgs-3a6a3815e9eb002d0bfd399b18c378e5a9890e4f.zip
kdeconnect: upgrade from 0.7.2 to 0.7.3 add new dependency: libfakekey
libfakekey is an X virtual keyboard library
Diffstat (limited to 'pkgs/development/libraries/libfakekey')
-rw-r--r--pkgs/development/libraries/libfakekey/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libfakekey/default.nix b/pkgs/development/libraries/libfakekey/default.nix
new file mode 100644
index 00000000000..4e74762f3f9
--- /dev/null
+++ b/pkgs/development/libraries/libfakekey/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, libX11, libXi, libXtst, pkgconfig, xextproto }:
+
+stdenv.mkDerivation rec {
+  name = "libfakekey-${version}";
+  version = "0.1";
+
+  src = fetchurl {
+    url = "http://downloads.yoctoproject.org/releases/matchbox/libfakekey/0.1/${name}.tar.gz";
+    sha256 = "10msplyn535hmzbmbdnx4zc20hkaw6d81if5lzxs82k8sq2mkx9k";
+  };
+
+  buildInputs = [ libX11 libXi libXtst pkgconfig xextproto ];
+
+  meta = with stdenv.lib; {
+    description = "X virtual keyboard library";
+    homepage = https://www.yoctoproject.org/tools-resources/projects/matchbox;
+    license = licenses.gpl2;
+    maintainers = [ maintainers.goibhniu ];
+    platforms = platforms.linux;
+  };
+}