Merge pull request #299297 from Scrumplex/pkgs/xr-hardware/1.1.1

xr-hardware: unstable-2023-11-08 -> 1.1.1
This commit is contained in:
Nick Cao 2024-03-28 09:56:58 -04:00 committed by GitHub
commit e8422b9861
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,22 +1,28 @@
{ { lib
lib, , stdenvNoCC
stdenvNoCC, , fetchFromGitLab
fetchFromGitLab , nix-update-script
}: stdenvNoCC.mkDerivation { }:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "xr-hardware"; pname = "xr-hardware";
version = "unstable-2023-11-08"; version = "1.1.1";
src = fetchFromGitLab { src = fetchFromGitLab {
domain = "gitlab.freedesktop.org"; domain = "gitlab.freedesktop.org";
owner = "monado/utilities"; owner = "monado/utilities";
repo = "xr-hardware"; repo = "xr-hardware";
rev = "9204de323210d2a5ab8635c2ee52127100de67b1"; rev = "refs/tags/${finalAttrs.version}";
hash = "sha256-ZS15WODms/WKsPu+WbfILO2BOwnxrhCY/SoF8jzOX5Q="; hash = "sha256-w35/LoozCJz0ytHEHWsEdCaYYwyGU6sE13iMckVdOzY=";
}; };
dontConfigure = true;
dontBuild = true;
installTargets = "install_package"; installTargets = "install_package";
installFlagsArray = "DESTDIR=${placeholder "out"}"; installFlagsArray = "DESTDIR=${placeholder "out"}";
passthru.updateScript = nix-update-script { };
meta = with lib; { meta = with lib; {
description = "Hardware description for XR devices"; description = "Hardware description for XR devices";
homepage = "https://gitlab.freedesktop.org/monado/utilities/xr-hardware"; homepage = "https://gitlab.freedesktop.org/monado/utilities/xr-hardware";
@ -24,4 +30,4 @@
maintainers = with maintainers; [ Scrumplex ]; maintainers = with maintainers; [ Scrumplex ];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} })