Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a1f6400fd52a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 215f3042faf5
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 6, 2020

  1. drm_info: 2.1.0 -> 2.2.0

    Now requires pciutils to print vendor information.
    Emantor committed Apr 6, 2020
    Copy the full SHA
    8f991fe View commit details

Commits on Apr 10, 2020

  1. Merge pull request #84341 from Emantor/bump/drm_info

    drm_info: 2.1.0 -> 2.2.0
    worldofpeace authored Apr 10, 2020
    Copy the full SHA
    215f304 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/tools/drm_info/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/tools/drm_info/default.nix
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{ stdenv, fetchFromGitHub
, libdrm, json_c
, libdrm, json_c, pciutils
, meson, ninja, pkgconfig
}:

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

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

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

meta = with stdenv.lib; {
description = "Small utility to dump info about DRM devices.";