Files
nixpkgs/pkgs/by-name/ca/casilda/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

67 lines
1.2 KiB
Nix

{
lib,
stdenv,
fetchFromGitLab,
meson,
ninja,
pkg-config,
gobject-introspection,
glib,
gtk4,
wayland-protocols,
libepoxy,
wayland,
wayland-scanner,
wlroots_0_18,
libxkbcommon,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "casilda";
version = "0.9.1";
outputs = [
"out"
"dev"
];
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "jpu";
repo = "casilda";
tag = finalAttrs.version;
hash = "sha256-7A3XzfUALsmkykwOqF/8fg7T7LoVzwk1+7TmRkh1Wys=";
};
depsBuildBuild = [ pkg-config ];
nativeBuildInputs = [
meson
ninja
pkg-config
gobject-introspection
wayland-scanner
];
buildInputs = [
libepoxy
glib
wayland-protocols
wayland # for wayland-server
libxkbcommon
wlroots_0_18
];
propagatedBuildInputs = [ gtk4 ];
strictDeps = true;
meta = {
homepage = "https://gitlab.gnome.org/jpu/casilda";
description = "Simple Wayland compositor widget for Gtk 4 which can be used to embed other processes windows in Gtk 4 application";
maintainers = [ ];
license = lib.licenses.lgpl21Plus;
platforms = lib.platforms.unix;
};
})