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