depot/pkgs/development/tools/drm_info/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

28 lines
689 B
Nix

{ lib, stdenv, fetchFromGitHub
, libdrm, json_c, pciutils
, meson, ninja, pkg-config
}:
stdenv.mkDerivation rec {
pname = "drm_info";
version = "2.3.0";
src = fetchFromGitHub {
owner = "ascent12";
repo = "drm_info";
rev = "v${version}";
sha256 = "sha256-UTDYLe3QezPCyG9CIp+O+KX716JDTL9mn+OEjjyTwlg=";
};
nativeBuildInputs = [ meson ninja pkg-config ];
buildInputs = [ libdrm json_c pciutils ];
meta = with lib; {
description = "Small utility to dump info about DRM devices";
mainProgram = "drm_info";
homepage = "https://github.com/ascent12/drm_info";
license = licenses.mit;
maintainers = [ ];
platforms = platforms.linux;
};
}