Files
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

59 lines
978 B
Nix

{
lib,
stdenv,
fetchFromGitLab,
meson,
ninja,
pkg-config,
docbook-xsl-nons,
docbook_xml_dtd_43,
gtk-doc,
gdk-pixbuf,
libX11,
}:
stdenv.mkDerivation rec {
pname = "gdk-pixbuf-xlib";
version = "2.40.2";
outputs = [
"out"
"dev"
"devdoc"
];
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "Archive";
repo = "gdk-pixbuf-xlib";
rev = version;
hash = "sha256-b4EUaYzg2NlBMU90dGQivOvkv9KKSzES/ymPqzrelu8=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
docbook-xsl-nons
docbook_xml_dtd_43
gtk-doc
];
propagatedBuildInputs = [
gdk-pixbuf
libX11
];
mesonFlags = [
"-Dgtk_doc=true"
];
meta = with lib; {
description = "Deprecated API for integrating GdkPixbuf with Xlib data types";
homepage = "https://gitlab.gnome.org/Archive/gdk-pixbuf-xlib";
maintainers = [ ];
license = licenses.lgpl21Plus;
platforms = platforms.unix;
};
}