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
1 changed files with 15 additions and 9 deletions

View File

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