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
51 lines
819 B
Nix
51 lines
819 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchgit,
|
|
automake,
|
|
autoconf,
|
|
libtool,
|
|
libX11,
|
|
libXi,
|
|
libXtst,
|
|
pkg-config,
|
|
xorgproto,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libfakekey";
|
|
version = "0.3";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.yoctoproject.org/libfakekey";
|
|
tag = version;
|
|
hash = "sha256-QNJlxZ9uNwNgFWm9qRJdPfusx7dXHZajjFH7wDhpgcs=";
|
|
};
|
|
|
|
configureScript = "./autogen.sh";
|
|
|
|
nativeBuildInputs = [
|
|
automake
|
|
autoconf
|
|
pkg-config
|
|
libtool
|
|
];
|
|
|
|
buildInputs = [
|
|
libX11
|
|
libXi
|
|
libXtst
|
|
xorgproto
|
|
];
|
|
|
|
NIX_LDFLAGS = "-lX11";
|
|
|
|
meta = with lib; {
|
|
description = "X virtual keyboard library";
|
|
homepage = "https://www.yoctoproject.org/tools-resources/projects/matchbox";
|
|
license = licenses.gpl2;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|