about summary refs log tree commit diff
path: root/pkgs/applications/audio/tauon/default.nix
diff options
context:
space:
mode:
authorJan Solanti <jhs@psonet.com>2023-06-11 16:20:52 +0300
committerJan Solanti <jhs@psonet.com>2023-06-12 01:04:04 +0300
commitaad518563260400780a210725e14be22f7ddfa5a (patch)
tree7e9340d06406a23fb85f163be477257318712ac6 /pkgs/applications/audio/tauon/default.nix
parent9401a0c780b49faf6c28adf55764f230301d0dce (diff)
tauon: 7.6.4 -> 7.6.5
Diffstat (limited to 'pkgs/applications/audio/tauon/default.nix')
-rw-r--r--pkgs/applications/audio/tauon/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/audio/tauon/default.nix b/pkgs/applications/audio/tauon/default.nix
index 23dd5e8fa6fd4..f0e99f0f7ec95 100644
--- a/pkgs/applications/audio/tauon/default.nix
+++ b/pkgs/applications/audio/tauon/default.nix
@@ -23,15 +23,15 @@
 , withDiscordRPC ? false
 }:
 
-stdenv.mkDerivation rec {
+stdenv.mkDerivation (finalAttrs: {
   pname = "tauon";
-  version = "7.6.4";
+  version = "7.6.5";
 
   src = fetchFromGitHub {
     owner = "Taiko2k";
     repo = "TauonMusicBox";
-    rev = "v${version}";
-    hash = "sha256-xMUQ2LabxuvCdd7dsoXPN3tjkDxfXIQ8UrJcsGQ+EEU=";
+    rev = "v${finalAttrs.version}";
+    hash = "sha256-+K+sX6JbVB7qCRlwlIHMHFR76GwZZrHFh6Jjn8xlMmg=";
   };
 
   postUnpack = ''
@@ -133,9 +133,9 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "The Linux desktop music player from the future";
     homepage = "https://tauonmusicbox.rocks/";
-    changelog = "https://github.com/Taiko2k/TauonMusicBox/releases/tag/v${version}";
+    changelog = "https://github.com/Taiko2k/TauonMusicBox/releases/tag/v${finalAttrs.version}";
     license = licenses.gpl3;
     maintainers = with maintainers; [ jansol ];
     platforms = platforms.linux ++ platforms.darwin;
   };
-}
+})