libxkbfile: 1.1.3 -> 1.2.0 (#532699)

This commit is contained in:
dotlambda 2026-06-26 22:43:51 +00:00 committed by GitHub
commit b806a825a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,6 +2,8 @@
lib,
stdenv,
fetchurl,
meson,
ninja,
pkg-config,
xorgproto,
libx11,
@ -10,7 +12,7 @@
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libxkbfile";
version = "1.1.3";
version = "1.2.0";
outputs = [
"out"
@ -19,12 +21,16 @@ stdenv.mkDerivation (finalAttrs: {
src = fetchurl {
url = "mirror://xorg/individual/lib/libxkbfile-${finalAttrs.version}.tar.xz";
hash = "sha256-qbY+6pl6u57mqLT7tRWDHIQfRxr4RaCd5EOygAOHS+w=";
hash = "sha256-f3GITl+vVvsOgj84SFmc+bWpr85RyQmCuutk9jUjPr8=";
};
strictDeps = true;
nativeBuildInputs = [ pkg-config ];
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [
xorgproto