summary refs log tree commit diff
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-08-08 11:49:55 +0100
committerGitHub <noreply@github.com>2018-08-08 11:49:55 +0100
commit04729aa0877bcd7a7499df76231e0e5c5c0aa36a (patch)
tree93843fc75414a832c649ad844dab55875a22be3e
parent6e21704e34e108b8bed14975bd828510d3df7087 (diff)
parent1cb074bed0b6bc849fa5e363479ba65e6faf04ef (diff)
downloadnixlib-04729aa0877bcd7a7499df76231e0e5c5c0aa36a.tar
nixlib-04729aa0877bcd7a7499df76231e0e5c5c0aa36a.tar.gz
nixlib-04729aa0877bcd7a7499df76231e0e5c5c0aa36a.tar.bz2
nixlib-04729aa0877bcd7a7499df76231e0e5c5c0aa36a.tar.lz
nixlib-04729aa0877bcd7a7499df76231e0e5c5c0aa36a.tar.xz
nixlib-04729aa0877bcd7a7499df76231e0e5c5c0aa36a.tar.zst
nixlib-04729aa0877bcd7a7499df76231e0e5c5c0aa36a.zip
Merge pull request #44701 from r-ryantm/auto-update/qsynth
qsynth: 0.5.1 -> 0.5.2
-rw-r--r--pkgs/applications/audio/qsynth/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/audio/qsynth/default.nix b/pkgs/applications/audio/qsynth/default.nix
index f98547ed46f2..26adc6394349 100644
--- a/pkgs/applications/audio/qsynth/default.nix
+++ b/pkgs/applications/audio/qsynth/default.nix
@@ -2,15 +2,15 @@
 
 stdenv.mkDerivation  rec {
   name = "qsynth-${version}";
-  version = "0.5.1";
+  version = "0.5.2";
 
   src = fetchurl {
     url = "mirror://sourceforge/qsynth/${name}.tar.gz";
-    sha256 = "0kpk1rnhbifbvm4xvw8i0d4ksk78pf505qvg08k89kqkg32494ap";
+    sha256 = "1rfkaxq1pyc4hv3l0i6wicianbcbm1wp53kh9i5d4jsljgisd1dv";
   };
 
   # cmake is looking for qsynth.desktop.in and fails if it doesn't find it
-  # seems like a bug and can presumable go in the next version after 0.5.1
+  # seems like a bug and can presumable go in the next version after 0.5.2
   postPatch = ''
     mv src/qsynth.desktop src/qsynth.desktop.in
   '';