summary refs log tree commit diff
path: root/pkgs/applications/audio/fluidsynth
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-02-25 21:28:59 -0800
committerRyan Mulligan <ryan@ryantm.com>2018-02-25 21:28:59 -0800
commitb05cc4d9a59815165d0f0a40f35a162c6fd4ed18 (patch)
treee3ecbf7f277e9e4e37806d9363108ebc44a88a6e /pkgs/applications/audio/fluidsynth
parent0fadb81af44fe7f43581a276d2ca863bdb64dd67 (diff)
downloadnixpkgs-b05cc4d9a59815165d0f0a40f35a162c6fd4ed18.tar
nixpkgs-b05cc4d9a59815165d0f0a40f35a162c6fd4ed18.tar.gz
nixpkgs-b05cc4d9a59815165d0f0a40f35a162c6fd4ed18.tar.bz2
nixpkgs-b05cc4d9a59815165d0f0a40f35a162c6fd4ed18.tar.lz
nixpkgs-b05cc4d9a59815165d0f0a40f35a162c6fd4ed18.tar.xz
nixpkgs-b05cc4d9a59815165d0f0a40f35a162c6fd4ed18.tar.zst
nixpkgs-b05cc4d9a59815165d0f0a40f35a162c6fd4ed18.zip
fluidsynth: 1.1.8 -> 1.1.9
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/lahkxc281j7vxzivbp68c71k6jgjzmcj-fluidsynth-1.1.9/bin/fluidsynth -h` got 0 exit code
- ran `/nix/store/lahkxc281j7vxzivbp68c71k6jgjzmcj-fluidsynth-1.1.9/bin/fluidsynth --help` got 0 exit code
- ran `/nix/store/lahkxc281j7vxzivbp68c71k6jgjzmcj-fluidsynth-1.1.9/bin/fluidsynth -V` and found version 1.1.9
- ran `/nix/store/lahkxc281j7vxzivbp68c71k6jgjzmcj-fluidsynth-1.1.9/bin/fluidsynth --version` and found version 1.1.9
- ran `/nix/store/lahkxc281j7vxzivbp68c71k6jgjzmcj-fluidsynth-1.1.9/bin/fluidsynth -h` and found version 1.1.9
- ran `/nix/store/lahkxc281j7vxzivbp68c71k6jgjzmcj-fluidsynth-1.1.9/bin/fluidsynth --help` and found version 1.1.9
- found 1.1.9 with grep in /nix/store/lahkxc281j7vxzivbp68c71k6jgjzmcj-fluidsynth-1.1.9
- found 1.1.9 in filename of file in /nix/store/lahkxc281j7vxzivbp68c71k6jgjzmcj-fluidsynth-1.1.9
Diffstat (limited to 'pkgs/applications/audio/fluidsynth')
-rw-r--r--pkgs/applications/audio/fluidsynth/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/fluidsynth/default.nix b/pkgs/applications/audio/fluidsynth/default.nix
index 50689886fdd..789ee35f260 100644
--- a/pkgs/applications/audio/fluidsynth/default.nix
+++ b/pkgs/applications/audio/fluidsynth/default.nix
@@ -5,13 +5,13 @@
 
 stdenv.mkDerivation  rec {
   name = "fluidsynth-${version}";
-  version = "1.1.8";
+  version = "1.1.9";
 
   src = fetchFromGitHub {
     owner = "FluidSynth";
     repo = "fluidsynth";
     rev = "v${version}";
-    sha256 = "12q7hv0zvgylsdj1ipssv5zr7ap2y410dxsd63dz22y05fa2hwwd";
+    sha256 = "0krvmb1idnf95l2ydzfcb08ayyx3n4m71hf9fgwv3srzaikvpf3q";
   };
 
   nativeBuildInputs = [ pkgconfig cmake ];