about summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-05-16 11:01:03 +0300
committerGitHub <noreply@github.com>2023-05-16 11:01:03 +0300
commitc1f9e066a4199eee843fd631e07a8101ffb4733a (patch)
treea3ac7dcd07df9868aa19e5be38e2ce7b2c569439 /pkgs/applications/audio
parent51f09f79d53c452e7bbcead88cc569e7cec28b7c (diff)
parent17cb9a8e810c34e7081c007dcc022c54e0433a17 (diff)
Merge pull request #231972 from r-ryantm/auto-update/mixxx
mixxx: 2.3.4 -> 2.3.5
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/mixxx/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/audio/mixxx/default.nix b/pkgs/applications/audio/mixxx/default.nix
index e72e809e91757..0c660c3af5805 100644
--- a/pkgs/applications/audio/mixxx/default.nix
+++ b/pkgs/applications/audio/mixxx/default.nix
@@ -52,13 +52,13 @@
 
 mkDerivation rec {
   pname = "mixxx";
-  version = "2.3.4";
+  version = "2.3.5";
 
   src = fetchFromGitHub {
     owner = "mixxxdj";
     repo = "mixxx";
     rev = version;
-    sha256 = "sha256-1hOMU/Mdk1vT0GQipn/WX2fm9ddN0mPIq7kf2i2w3xQ=";
+    sha256 = "sha256-NAp7RoYSI6BRw7C0ejW4pCJJYx9BG8D+BGVCVTDrggQ=";
   };
 
   nativeBuildInputs = [ cmake pkg-config ];
@@ -116,7 +116,7 @@ mkDerivation rec {
 
   # mixxx installs udev rules to DATADIR instead of SYSCONFDIR
   # let's disable this and install udev rules manually via postInstall
-  # see https://github.com/mixxxdj/mixxx/blob/2.3.4/CMakeLists.txt#L1381-L1392
+  # see https://github.com/mixxxdj/mixxx/blob/2.3.5/CMakeLists.txt#L1381-L1392
   cmakeFlags = [
     "-DINSTALL_USER_UDEV_RULES=OFF"
   ];