Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
53 lines
868 B
Nix
53 lines
868 B
Nix
{
|
|
lib,
|
|
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 lib; {
|
|
homepage = "https://github.com/mahatma-kaganovich/xkbd";
|
|
description = "On-screen soft keyboard for X11";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "xkbd";
|
|
};
|
|
}
|