
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
29 lines
689 B
Nix
29 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;
|
|
};
|
|
}
|