about summary refs log tree commit diff
path: root/pkgs/applications/audio/helio-workstation
diff options
context:
space:
mode:
authorСухарик <65870+suhr@users.noreply.github.com>2021-12-11 11:59:12 +0300
committerСухарик <65870+suhr@users.noreply.github.com>2021-12-11 11:59:12 +0300
commit8ba42f8fe9004c2c340c2580dd5729aaba86327e (patch)
treed3a99d53121833c5e1c04d656c133e1b626a5bdf /pkgs/applications/audio/helio-workstation
parent6d3471e55e61e1069e96c4acef07c8fafe949f3d (diff)
helio-workstation: 3.6 -> 3.8
Diffstat (limited to 'pkgs/applications/audio/helio-workstation')
-rw-r--r--pkgs/applications/audio/helio-workstation/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/audio/helio-workstation/default.nix b/pkgs/applications/audio/helio-workstation/default.nix
index 012838eb436d2..b36d977b2bdf1 100644
--- a/pkgs/applications/audio/helio-workstation/default.nix
+++ b/pkgs/applications/audio/helio-workstation/default.nix
@@ -5,14 +5,14 @@
 
 stdenv.mkDerivation rec {
   pname = "helio-workstation";
-  version = "3.6";
+  version = "3.8";
 
   src = fetchFromGitHub {
     owner = "helio-fm";
     repo = pname;
     rev = version;
     fetchSubmodules = true;
-    sha256 = "sha256-qW39g6rQ5VPQ3Hx9NmwLbpZiITnzFZDZlcLkE+pJKPc=";
+    sha256 = "sha256-uwRSOJ5WvDH4mfL9pCTCGzuSRT8SIBrI+Wsbumzejv0=";
   };
 
   buildInputs = [
@@ -30,13 +30,13 @@ stdenv.mkDerivation rec {
 
   installPhase = ''
     mkdir -p $out/bin
-    install -Dm755 build/Helio $out/bin
-    wrapProgram $out/bin/Helio --prefix PATH ":" ${gnome.zenity}/bin
+    install -Dm755 build/helio $out/bin
+    wrapProgram $out/bin/helio --prefix PATH ":" ${gnome.zenity}/bin
 
     mkdir -p $out/share
     cp -r ../Deployment/Linux/Debian/x64/usr/share/* $out/share
     substituteInPlace $out/share/applications/Helio.desktop \
-      --replace "/usr/bin/helio" "$out/bin/Helio"
+      --replace "/usr/bin/helio" "$out/bin/helio"
   '';
 
   meta = with lib; {