diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2015-06-07 14:38:49 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2015-06-07 14:38:49 +0200 |
commit | d7bf1f9193c46ee4b66c7bc0e7341095adb00bfd (patch) | |
tree | dedbcbf19d5e697314427f226187e3bf8baff858 /jack2.nix | |
parent | 63644513486213a25d31226856158a4a77fc21cd (diff) | |
download | nixos-d7bf1f9193c46ee4b66c7bc0e7341095adb00bfd.tar nixos-d7bf1f9193c46ee4b66c7bc0e7341095adb00bfd.tar.gz nixos-d7bf1f9193c46ee4b66c7bc0e7341095adb00bfd.tar.bz2 nixos-d7bf1f9193c46ee4b66c7bc0e7341095adb00bfd.tar.xz nixos-d7bf1f9193c46ee4b66c7bc0e7341095adb00bfd.zip |
JACK_PROMISCOUS_SERVER + cleanup
Diffstat (limited to 'jack2.nix')
-rw-r--r-- | jack2.nix | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -16,8 +16,8 @@ stdenv.mkDerivation rec { | |||
16 | }; | 16 | }; |
17 | 17 | ||
18 | buildInputs = | 18 | buildInputs = |
19 | [ alsaLib dbus expat libsamplerate libsndfile makeWrapper | 19 | [ alsaLib expat libsamplerate libsndfile makeWrapper |
20 | pkgconfig python pythonDBus | 20 | pkgconfig python |
21 | ] ++ (stdenv.lib.optional firewireSupport ffado); | 21 | ] ++ (stdenv.lib.optional firewireSupport ffado); |
22 | 22 | ||
23 | patchPhase = '' | 23 | patchPhase = '' |
@@ -33,6 +33,9 @@ stdenv.mkDerivation rec { | |||
33 | installPhase = '' | 33 | installPhase = '' |
34 | python waf install | 34 | python waf install |
35 | wrapProgram $out/bin/jack_control --set PYTHONPATH $PYTHONPATH | 35 | wrapProgram $out/bin/jack_control --set PYTHONPATH $PYTHONPATH |
36 | for bin in $out/bin/*; do | ||
37 | wrapProgram $bin --set JACK_PROMISCOUS_SERVER 1 | ||
38 | done | ||
36 | ''; | 39 | ''; |
37 | 40 | ||
38 | meta = with stdenv.lib; { | 41 | meta = with stdenv.lib; { |