From 0a3fd92de049e5073d89cfaa8781f398179d633b Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Mon, 23 Dec 2024 22:39:59 +0100 Subject: [PATCH] bespokesynth: Add passthru.updateScript So updates can be sent automatically by r-ryantm, assuming that no other adjustments are needed to build it. --- pkgs/applications/audio/bespokesynth/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/audio/bespokesynth/default.nix b/pkgs/applications/audio/bespokesynth/default.nix index ffa8f3ca7317..51d444bc8ff7 100644 --- a/pkgs/applications/audio/bespokesynth/default.nix +++ b/pkgs/applications/audio/bespokesynth/default.nix @@ -3,6 +3,7 @@ stdenv, fetchFromGitHub, fetchzip, + gitUpdater, cmake, pkg-config, ninja, @@ -168,6 +169,10 @@ stdenv.mkDerivation (finalAttrs: { dontPatchELF = true; # needed or nix will try to optimize the binary by removing "useless" rpath + passthru.updateScript = gitUpdater { + rev-prefix = "v"; + }; + meta = { description = "Software modular synth with controllers support, scripting and VST"; homepage = "https://www.bespokesynth.com/";