Skip to content

Commit

Permalink
baudline: use jack2 instead of jack1
Browse files Browse the repository at this point in the history
Otherwise it doesn't connect with the rest of the system.

[Bjørn: I think this is a symptom of jack1 packaging problem in nixpkgs.
The two libraries are _supposed_ to be interchangeable.]
  • Loading branch information
magnetophon authored and bjornfor committed Jul 29, 2017
1 parent a444b34 commit 72e99b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/audio/baudline/default.nix
@@ -1,10 +1,10 @@
{ stdenv, fetchurl, libXmu, libXt, libX11, libXext, libXxf86vm, jack
{ stdenv, fetchurl, libXmu, libXt, libX11, libXext, libXxf86vm, libjack2
, makeWrapper
}:

let
rpath = stdenv.lib.makeLibraryPath
[ libXmu libXt libX11 libXext libXxf86vm jack ];
[ libXmu libXt libX11 libXext libXxf86vm libjack2 ];
in
stdenv.mkDerivation rec {
name = "baudline-${version}";
Expand Down
4 changes: 1 addition & 3 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -13459,9 +13459,7 @@ with pkgs;

batti = callPackage ../applications/misc/batti { };

baudline = callPackage ../applications/audio/baudline {
jack = jack1;
};
baudline = callPackage ../applications/audio/baudline { };


bazaar = callPackage ../applications/version-management/bazaar { };
Expand Down

0 comments on commit 72e99b6

Please sign in to comment.