3
0
Fork 0
forked from mirrors/nixpkgs

Upgrading qjackctl from 0.3.7 to 0.3.8, fixes a bug where it crashes when jack is stopped

svn path=/nixpkgs/trunk/; revision=33864
This commit is contained in:
Cillian de Roiste 2012-04-20 20:37:54 +00:00
parent f412a1fbe7
commit 34b058dcce

View file

@ -1,14 +1,14 @@
{ stdenv, fetchurl, qt4, alsaLib, jackaudio, dbus }:
stdenv.mkDerivation rec {
version = "0.3.7";
version = "0.3.8";
name = "qjackctl-${version}";
# some dependencies such as killall have to be installed additionally
src = fetchurl {
url = "mirror://sourceforge/qjackctl/${name}.tar.gz";
sha256 = "1gynym21d8d4d38qyl817qg0v8360brcpga4wcdapccbgpaz3c28";
sha256 = "1rbipbknq7f8qfma33vwfv2ar3vxkz1p1ykp5mx6nirmcn1nj247";
};
buildInputs = [ qt4 alsaLib jackaudio dbus ];