drm_info: 2.8.0 -> 2.10.0 (#533960)

This commit is contained in:
Arne Keller 2026-07-04 21:27:14 +00:00 committed by GitHub
commit b2d0e7dfa1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,6 +3,7 @@
stdenv,
fetchFromGitLab,
libdrm,
libdisplay-info,
json_c,
pciutils,
meson,
@ -14,18 +15,23 @@
stdenv.mkDerivation (finalAttrs: {
pname = "drm_info";
version = "2.8.0";
version = "2.10.0";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "emersion";
repo = "drm_info";
rev = "v${finalAttrs.version}";
hash = "sha256-LtZ7JJmVNWMjJL2F6k+tcBpJ2v2fd+HNWyHAOvIi7Ko=";
hash = "sha256-QKF0frDPelwHOzf3r0tzSo7i1WfGhcFGJfxf2bj1+OE=";
};
strictDeps = true;
postPatch = ''
substituteInPlace meson.build \
--replace-fail "'<2.4.134'" "'<2.4.133'"
'';
depsBuildBuild = [
pkg-config
];
@ -39,6 +45,7 @@ stdenv.mkDerivation (finalAttrs: {
buildInputs = [
libdrm
libdisplay-info
json_c
pciutils
];