My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/drm_info/default.nix

27 lines
690 B

{ 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";
homepage = "https://github.com/ascent12/drm_info";
license = licenses.mit;
maintainers = with maintainers; [ tadeokondrak ];
platforms = platforms.linux;
};
}