nixpkgs/pkgs/applications/misc/xkbd/default.nix
Jörg Thalheim 72f6df338d remove genesis maintainer
genesis has no longer access to github
2020-11-18 22:37:56 -08:00

31 lines
783 B
Nix

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