xr-hardware: unstable-2023-11-08 -> 1.1.1

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2024-03-26 21:26:07 +01:00
parent fd84c1ff89
commit ef0cd26be7
No known key found for this signature in database
GPG Key ID: E13DFD4B47127951
1 changed files with 12 additions and 9 deletions

View File

@ -1,19 +1,22 @@
{
lib,
stdenvNoCC,
fetchFromGitLab
}: stdenvNoCC.mkDerivation {
{ lib
, stdenvNoCC
, fetchFromGitLab
}:
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"}";
@ -24,4 +27,4 @@
maintainers = with maintainers; [ Scrumplex ];
platforms = platforms.linux;
};
}
})