vrrtest: init at 2.1.0

This commit is contained in:
justinlime 2023-08-05 16:01:03 -05:00 committed by Anderson Torres
parent 0706a28c36
commit d8247503ab
2 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,46 @@
{ lib
, stdenv
, fetchFromGitHub
, makeWrapper
, zip
, love
}:
stdenv.mkDerivation (finalAttrs: {
pname = "vrrtest";
version = "2.1.0";
src = fetchFromGitHub {
owner = "Nixola";
repo = "VRRTest";
rev = "v${finalAttrs.version}";
hash = "sha256-esyD+BpdnB8miUrIjV6P8Lho1xztmhLDnKxdQKW8GXc=";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ zip ];
buildPhase = ''
runHook preBuild
zip -9 -r vrrtest.love .
runHook postBuild
'';
installPhase = ''
runHook preInstall
install -Dm444 -t $out/share/ vrrtest.love
makeWrapper ${love}/bin/love $out/bin/vrrtest \
--add-flags $out/share/vrrtest.love
runHook postInstall
'';
meta = with lib; {
description = "Tool testing variable refresh rates";
homepage = "https://github.com/Nixola/VRRTest";
license = licenses.zlib;
mainProgram = "vrrtest";
maintainers = with maintainers; [ justinlime ];
inherit (love.meta) platforms;
};
})

View file

@ -1988,6 +1988,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
vrrtest = callPackage ../tools/video/vrrtest { };
winbox = callPackage ../tools/admin/winbox {
wine = wineWowPackages.staging;
};