summary refs log tree commit diff
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-02-27 15:38:46 -0800
committerRyan Mulligan <ryan@ryantm.com>2018-02-27 15:38:46 -0800
commitd37b43f434e5752bdcd2262365dcfedd15b622b5 (patch)
treeeee94e61d099753d3b256e78d5e0ecb708182064
parent6a101342051182e66587249cfd8c4800b0746c82 (diff)
downloadnixpkgs-d37b43f434e5752bdcd2262365dcfedd15b622b5.tar
nixpkgs-d37b43f434e5752bdcd2262365dcfedd15b622b5.tar.gz
nixpkgs-d37b43f434e5752bdcd2262365dcfedd15b622b5.tar.bz2
nixpkgs-d37b43f434e5752bdcd2262365dcfedd15b622b5.tar.lz
nixpkgs-d37b43f434e5752bdcd2262365dcfedd15b622b5.tar.xz
nixpkgs-d37b43f434e5752bdcd2262365dcfedd15b622b5.tar.zst
nixpkgs-d37b43f434e5752bdcd2262365dcfedd15b622b5.zip
rtaudio: 4.1.2 -> 5.0.0
Semi-automatic update. These checks were performed:

- built on NixOS
- found 5.0.0 with grep in /nix/store/sxxwa9mma9933vxb4w3d2szxjqx5w773-rtaudio-5.0.0
- found 5.0.0 in filename of file in /nix/store/sxxwa9mma9933vxb4w3d2szxjqx5w773-rtaudio-5.0.0

cc "@magnetophon"
-rw-r--r--pkgs/development/libraries/audio/rtaudio/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/audio/rtaudio/default.nix b/pkgs/development/libraries/audio/rtaudio/default.nix
index 326572996b4..1df696c0ec6 100644
--- a/pkgs/development/libraries/audio/rtaudio/default.nix
+++ b/pkgs/development/libraries/audio/rtaudio/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchFromGitHub, autoconf, automake, libtool, libjack2,  alsaLib, rtmidi }:
 
 stdenv.mkDerivation rec {
-  version = "4.1.2";
+  version = "5.0.0";
   name = "rtaudio-${version}";
 
   src = fetchFromGitHub {
     owner = "thestk";
     repo = "rtaudio";
     rev = "${version}";
-    sha256 = "09j84l9l3q0g238z5k89rm8hgk0i1ir8917an7amq474nwjp80pq";
+    sha256 = "0jkqnhc2pq31nmq4daxhmqdjgv2qi4ib27hwms2r5zhnmvvzlr67";
   };
 
   buildInputs = [ autoconf automake libtool libjack2 alsaLib rtmidi ];