108dea5cda
https://github.com/ChristophHaag/vkdisplayinfo Apply suggestions from @SuperSandro2000's code review Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Don't use pipefail
49 lines
1015 B
Nix
49 lines
1015 B
Nix
{ lib
|
|
, stdenv
|
|
, meson
|
|
, ninja
|
|
, vulkan-loader
|
|
, vulkan-headers
|
|
, fetchFromGitHub
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "vkdisplayinfo";
|
|
version = "0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ChristophHaag";
|
|
repo = "vkdisplayinfo";
|
|
rev = version;
|
|
hash = "sha256-n6U7T5aOYTpgWE2WGPBPHtQKzitf9PxAoXJNWyz4rYw=";
|
|
};
|
|
|
|
postInstall = ''
|
|
install vkdisplayinfo -Dm755 -t $out/bin
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
($out/bin/vkdisplayinfo 2>&1 || true) | grep -q vkdisplayinfo
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
];
|
|
|
|
buildInputs = [
|
|
vulkan-loader
|
|
vulkan-headers
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Print displays and modes enumerated with the Vulkan function vkGetPhysicalDeviceDisplayPropertiesKHR";
|
|
homepage = "https://github.com/ChristophHaag/vkdisplayinfo";
|
|
platforms = platforms.linux;
|
|
license = licenses.boost;
|
|
maintainers = [ maintainers.LunNova ];
|
|
};
|
|
}
|