10 stdenv.mkDerivation (finalAttrs: {
14 src = fetchFromGitHub {
17 rev = "v${finalAttrs.version}";
18 hash = "sha256-esyD+BpdnB8miUrIjV6P8Lho1xztmhLDnKxdQKW8GXc=";
21 nativeBuildInputs = [ makeWrapper ];
23 buildInputs = [ zip ];
27 zip -9 -r vrrtest.love .
33 install -Dm444 -t $out/share/ vrrtest.love
34 makeWrapper ${love}/bin/love $out/bin/vrrtest \
35 --add-flags $out/share/vrrtest.love
40 description = "Tool testing variable refresh rates";
41 homepage = "https://github.com/Nixola/VRRTest";
42 license = licenses.zlib;
43 mainProgram = "vrrtest";
44 maintainers = with maintainers; [ justinlime ];
45 inherit (love.meta) platforms;