about summary refs log tree commit diff
path: root/pkgs/applications/audio/surge-XT
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2024-02-12 10:22:45 +0100
committerBart Brouns <bart@magnetophon.nl>2024-02-12 10:22:45 +0100
commiteb092f16260678e025d89cf308c0e69b40ec8d39 (patch)
treeb20653ce107093304c26152fa2cb5a95388626ea /pkgs/applications/audio/surge-XT
parent51957cea324b98cacaa411ac25f536d1ba75f7aa (diff)
surge-XT: better version info
* pkgs/applications/audio/surge-XT/default.nix:
Diffstat (limited to 'pkgs/applications/audio/surge-XT')
-rw-r--r--pkgs/applications/audio/surge-XT/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/applications/audio/surge-XT/default.nix b/pkgs/applications/audio/surge-XT/default.nix
index 63cf1110d7849..9f234b5e71c04 100644
--- a/pkgs/applications/audio/surge-XT/default.nix
+++ b/pkgs/applications/audio/surge-XT/default.nix
@@ -2,6 +2,7 @@
 , lib
 , fetchFromGitHub
 , cmake
+, gitMinimal
 , pkg-config
 , alsa-lib
 , freetype
@@ -22,12 +23,15 @@ stdenv.mkDerivation rec {
     owner = "surge-synthesizer";
     repo = "surge";
     rev = "release_xt_${version}";
+    branchName = "release-xt/${version}";
     fetchSubmodules = true;
-    sha256 = "sha256-xcbZ5TC2W2PVzAkpoKPFIgW1oRGaC+ynQYot3cb5NAQ=";
+    leaveDotGit = true;
+    sha256 = "sha256-q6qs/OhIakF+Gc8Da3pnfkUGYDUoJbvee0o8dfrRI2U=";
   };
 
   nativeBuildInputs = [
     cmake
+    gitMinimal
     pkg-config
   ];