nixpkgs/pkgs/development/libraries/libfakekey/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

23 lines
697 B
Nix

{ stdenv, fetchurl, libX11, libXi, libXtst, pkgconfig, xextproto }:
stdenv.mkDerivation rec {
name = "libfakekey-${version}";
version = "0.1";
src = fetchurl {
url = "https://downloads.yoctoproject.org/releases/matchbox/libfakekey/0.1/${name}.tar.gz";
sha256 = "10msplyn535hmzbmbdnx4zc20hkaw6d81if5lzxs82k8sq2mkx9k";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libX11 libXi libXtst 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;
};
}