nixpkgs/pkgs/tools/X11/xvkbd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libXt, libXaw, libXtst
, libXi, libXpm, pkg-config, xorgproto, Xaw3d }:
2014-11-15 23:35:52 +03:00
stdenv.mkDerivation rec {
pname = "xvkbd";
version = "4.1";
2014-11-15 23:35:52 +03:00
src = fetchurl {
url = "http://t-sato.in.coocan.jp/xvkbd/xvkbd-${version}.tar.gz";
sha256 = "1x5yldv9y99cw5hzzs73ygdn1z80zns9hz0baa355r711zghfbcm";
2014-11-15 23:35:52 +03:00
};
nativeBuildInputs = [ pkg-config ] ;
buildInputs = [ libXt libXaw libXtst xorgproto libXi Xaw3d libXpm ];
2018-11-28 06:37:05 +03:00
makeFlags = [
# avoid default libXt location
"appdefaultdir=${placeholder "out"}/share/X11/app-defaults"
"datarootdir=${placeholder "out"}/share"
2018-11-28 06:37:05 +03:00
];
2014-11-15 23:35:52 +03:00
preInstall = ''
# workaround absence of libXt in $DESTDIR location.
mkdir -p $out/share/X11
'';
meta = with lib; {
description = "Virtual keyboard for X window system";
2014-11-15 23:35:52 +03: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.
'';
homepage = "http://t-sato.in.coocan.jp/xvkbd";
2014-11-15 23:35:52 +03:00
license = licenses.gpl2Plus;
maintainers = [ maintainers.bennofs ];
2014-11-19 14:38:46 +03:00
platforms = platforms.linux;
2014-11-15 23:35:52 +03:00
};
}