2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, freetype, libXrender, libXft, xorgproto
|
2018-12-31 04:40:47 +01:00
|
|
|
, xinput, libXi, libXext, libXtst, libXpm, libX11, autoreconfHook
|
2018-08-25 14:39:58 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "xkbd";
|
2018-08-25 14:39:58 +02:00
|
|
|
version = "0.8.18";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mahatma-kaganovich";
|
|
|
|
repo = "xkbd";
|
2019-08-15 14:41:18 +02:00
|
|
|
rev = "${pname}-${version}";
|
2018-08-25 14:39:58 +02:00
|
|
|
sha256 = "05ry6q75jq545kf6p20nhfywaqf2wdkfiyp6iwdpv9jh238hf7m9";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
freetype libXrender libXft libXext libXtst libXpm libX11
|
2018-12-31 04:40:47 +01:00
|
|
|
libXi xorgproto xinput
|
2018-08-25 14:39:58 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/mahatma-kaganovich/xkbd";
|
2018-08-25 14:39:58 +02:00
|
|
|
description = "onscreen soft keyboard for X11";
|
|
|
|
license = licenses.gpl2Plus;
|
2020-11-17 17:50:53 +01:00
|
|
|
maintainers = [ ];
|
2018-08-25 14:39:58 +02:00
|
|
|
platforms = platforms.linux;
|
2024-02-11 03:19:15 +01:00
|
|
|
mainProgram = "xkbd";
|
2018-08-25 14:39:58 +02:00
|
|
|
};
|
|
|
|
}
|