summary refs log tree commit diff
path: root/pkgs/applications/audio/petrifoo
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2014-07-22 22:06:44 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2014-07-23 20:22:14 +0200
commitf6f2f38a6e782b981bca42e4c98e0a918625a711 (patch)
treead89920ea0ce97979fca673bb6a895ed7634ec01 /pkgs/applications/audio/petrifoo
parentcbd8f7093bc398103be51c07cca74ea832598dc3 (diff)
downloadnixpkgs-f6f2f38a6e782b981bca42e4c98e0a918625a711.tar
nixpkgs-f6f2f38a6e782b981bca42e4c98e0a918625a711.tar.gz
nixpkgs-f6f2f38a6e782b981bca42e4c98e0a918625a711.tar.bz2
nixpkgs-f6f2f38a6e782b981bca42e4c98e0a918625a711.tar.lz
nixpkgs-f6f2f38a6e782b981bca42e4c98e0a918625a711.tar.xz
nixpkgs-f6f2f38a6e782b981bca42e4c98e0a918625a711.tar.zst
nixpkgs-f6f2f38a6e782b981bca42e4c98e0a918625a711.zip
jack: change package and attr names to 'jack1' and 'jack2'
Currently, we have a 'jack' package with attrname 'jack1d' and a
'jackdbus' package with attrname 'jackaudio'. Make it consistent 'jack1'
and 'jack2' in both package name and attrname.

This aligns the naming with what can be found on the JACK homepage.

Q: what's the difference between jack1 and jack2?
A: http://trac.jackaudio.org/wiki/Q_differenc_jack1_jack2
Diffstat (limited to 'pkgs/applications/audio/petrifoo')
-rw-r--r--pkgs/applications/audio/petrifoo/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/petrifoo/default.nix b/pkgs/applications/audio/petrifoo/default.nix
index 2e53a22bff3..152ee442761 100644
--- a/pkgs/applications/audio/petrifoo/default.nix
+++ b/pkgs/applications/audio/petrifoo/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchgit, alsaLib, cmake, gtk, jackaudio, libgnomecanvas
+{ stdenv, fetchgit, alsaLib, cmake, gtk, jack2, libgnomecanvas
 , libpthreadstubs, libsamplerate, libsndfile, libtool, libxml2
 , pkgconfig }:
 
@@ -12,7 +12,7 @@ stdenv.mkDerivation  rec {
   };
 
   buildInputs =
-   [ alsaLib cmake  gtk jackaudio libgnomecanvas libpthreadstubs
+   [ alsaLib cmake  gtk jack2 libgnomecanvas libpthreadstubs
      libsamplerate libsndfile libtool libxml2 pkgconfig
    ];