about summary refs log tree commit diff
path: root/pkgs/applications/audio/qsynth
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-05-22 19:41:41 -0700
committerR. RyanTM <ryantm+bot@ryantm.com>2018-05-22 19:41:41 -0700
commitbbbd9e251b61084e19ed43b94372aec5d7feb64c (patch)
tree2d31ce3f965886ab0b45e2972c293e4bffdb5022 /pkgs/applications/audio/qsynth
parentc8a4562f5966e90cbbe04195b4a37a5d4a334f60 (diff)
qsynth: 0.5.0 -> 0.5.1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/qsynth/versions.

These checks were done:

- built on NixOS
- Warning: no invocation of /nix/store/v9m2gbw7l68qb4m5milqc8d2wfrafx97-qsynth-0.5.1/bin/qsynth had a zero exit code or showed the expected version
- 0 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 0.5.1 with grep in /nix/store/v9m2gbw7l68qb4m5milqc8d2wfrafx97-qsynth-0.5.1
- directory tree listing: https://gist.github.com/f7434d80382444c8ae9ba52dd07e27a7
- du listing: https://gist.github.com/1c209e5c3a841d8d8e1d3257c2dad992
Diffstat (limited to 'pkgs/applications/audio/qsynth')
-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 71f41f87009e6..f98547ed46f22 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.0";
+  version = "0.5.1";
 
   src = fetchurl {
     url = "mirror://sourceforge/qsynth/${name}.tar.gz";
-    sha256 = "1sr6vrz8z9r99j9xcix86lgcqldragb2ajmq1bnhr58d99sda584";
+    sha256 = "0kpk1rnhbifbvm4xvw8i0d4ksk78pf505qvg08k89kqkg32494ap";
   };
 
   # 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.0
+  # seems like a bug and can presumable go in the next version after 0.5.1
   postPatch = ''
     mv src/qsynth.desktop src/qsynth.desktop.in
   '';