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
76 lines
1.2 KiB
Nix
76 lines
1.2 KiB
Nix
{
|
|
mkDerivation,
|
|
lib,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
|
|
qtbase,
|
|
|
|
at-spi2-atk,
|
|
at-spi2-core,
|
|
libepoxy,
|
|
gtk3,
|
|
libdatrie,
|
|
libselinux,
|
|
libsepol,
|
|
libthai,
|
|
pcre,
|
|
util-linux,
|
|
wayland,
|
|
xorg,
|
|
|
|
cmake,
|
|
doxygen,
|
|
pkg-config,
|
|
wayland-protocols,
|
|
wayland-scanner,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "maliit-framework";
|
|
version = "2.3.0-unstable-2024-06-24";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "maliit";
|
|
repo = "framework";
|
|
rev = "ba6f7eda338a913f2c339eada3f0382e04f7dd67";
|
|
hash = "sha256-iwWLnstQMG8F6uE5rKF6t2X43sXQuR/rIho2RN/D9jE=";
|
|
};
|
|
|
|
buildInputs = [
|
|
at-spi2-atk
|
|
at-spi2-core
|
|
libepoxy
|
|
gtk3
|
|
libdatrie
|
|
libselinux
|
|
libsepol
|
|
libthai
|
|
pcre
|
|
util-linux
|
|
wayland
|
|
xorg.libXdmcp
|
|
xorg.libXtst
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
doxygen
|
|
pkg-config
|
|
wayland-protocols
|
|
wayland-scanner
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DQT5_PLUGINS_INSTALL_DIR=${placeholder "out"}/${qtbase.qtPluginPrefix}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Core libraries of Maliit and server";
|
|
mainProgram = "maliit-server";
|
|
homepage = "http://maliit.github.io/";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = [ ];
|
|
};
|
|
}
|