2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchurl, imake, libXt, libXaw, libXtst
|
2018-12-30 19:40:47 -08:00
|
|
|
, libXi, libXpm, xorgproto, gccmakedep, Xaw3d }:
|
2014-11-15 12:35:52 -08:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "xvkbd";
|
2018-03-09 19:19:22 -08:00
|
|
|
version = "3.9";
|
2014-11-15 12:35:52 -08:00
|
|
|
src = fetchurl {
|
2018-03-09 19:19:22 -08:00
|
|
|
url = "http://t-sato.in.coocan.jp/xvkbd/xvkbd-3.9.tar.gz";
|
|
|
|
sha256 = "17csj6x5zm3g67izfwhagkal1rbqzpw09lqmmlyrjy3vzgfkf75q";
|
2014-11-15 12:35:52 -08:00
|
|
|
};
|
|
|
|
|
2018-11-27 19:37:05 -08:00
|
|
|
nativeBuildInputs = [ imake gccmakedep ];
|
2018-12-30 19:40:47 -08:00
|
|
|
buildInputs = [ libXt libXaw libXtst xorgproto libXi Xaw3d libXpm ];
|
2014-11-15 12:35:52 -08:00
|
|
|
installTargets = [ "install" "install.man" ];
|
2018-11-27 19:37:05 -08:00
|
|
|
makeFlags = [
|
|
|
|
"BINDIR=$(out)/bin"
|
|
|
|
"XAPPLOADDIR=$(out)/etc/X11/app-defaults"
|
|
|
|
"MANPATH=$(out)/man"
|
|
|
|
];
|
2014-11-15 12:35:52 -08:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "Virtual keyboard for X window system";
|
2014-11-15 12:35:52 -08:00
|
|
|
longDescription = ''
|
|
|
|
xvkbd is a virtual (graphical) keyboard program for X Window System which provides
|
|
|
|
facility to enter characters onto other clients (softwares) by clicking on a
|
|
|
|
keyboard displayed on the screen.
|
|
|
|
'';
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://t-sato.in.coocan.jp/xvkbd";
|
2014-11-15 12:35:52 -08:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.bennofs ];
|
2014-11-19 03:38:46 -08:00
|
|
|
platforms = platforms.linux;
|
2014-11-15 12:35:52 -08:00
|
|
|
};
|
|
|
|
}
|