uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
48
pkgs/tools/graphics/vkdisplayinfo/default.nix
Normal file
48
pkgs/tools/graphics/vkdisplayinfo/default.nix
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue