nixpkgs/pkgs/applications/misc/xkbd/default.nix

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

31 lines
781 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, freetype, libXrender, libXft, xorgproto
, xinput, libXi, libXext, libXtst, libXpm, libX11, autoreconfHook
2018-08-25 14:39:58 +02:00
}:
stdenv.mkDerivation rec {
pname = "xkbd";
2018-08-25 14:39:58 +02:00
version = "0.8.18";
src = fetchFromGitHub {
owner = "mahatma-kaganovich";
repo = "xkbd";
rev = "${pname}-${version}";
2018-08-25 14:39:58 +02:00
sha256 = "05ry6q75jq545kf6p20nhfywaqf2wdkfiyp6iwdpv9jh238hf7m9";
};
buildInputs = [
freetype libXrender libXft libXext libXtst libXpm libX11
libXi xorgproto xinput
2018-08-25 14:39:58 +02:00
];
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
homepage = "https://github.com/mahatma-kaganovich/xkbd";
2018-08-25 14:39:58 +02:00
description = "onscreen soft keyboard for X11";
license = licenses.gpl2Plus;
maintainers = [ ];
2018-08-25 14:39:58 +02:00
platforms = platforms.linux;
};
}