summary refs log tree commit diff
path: root/pkgs/development/tools/drm_info/default.nix
blob: 9243bbb161bfd4a328576fe2f9350c76e4d43adf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchFromGitHub
, libdrm, json_c, pciutils
, meson, ninja, pkgconfig
}:

stdenv.mkDerivation rec {
  pname = "drm_info";
  version = "2.2.0";

  src = fetchFromGitHub {
    owner = "ascent12";
    repo = "drm_info";
    rev = "v${version}";
    sha256 = "0s4zp8xz21zcpinbcwdvg48rf0xr7rs0dqri28q093vfmllsk36f";
  };

  nativeBuildInputs = [ meson ninja pkgconfig ];
  buildInputs = [ libdrm json_c pciutils ];

  meta = with stdenv.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;
  };
}