summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bragi.nix15
1 files changed, 14 insertions, 1 deletions
diff --git a/bragi.nix b/bragi.nix
index 35d40f76..58391bc9 100644
--- a/bragi.nix
+++ b/bragi.nix
@@ -45,7 +45,20 @@ in rec {
45 --set JACK_PROMISCUOUS_SERVER 1 45 --set JACK_PROMISCUOUS_SERVER 1
46 ''; 46 '';
47 }; 47 };
48 jack2 = pkgs.callPackage ./customized/jack2.nix {}; 48 # jack2 = pkgs.callPackage ./customized/jack2.nix {};
49 jack2 = pkgs.symlinkJoin {
50 name = "jack2";
51 paths = [ pkgs.jack2 ];
52 buildInputs = [ pkgs.makeWrapper ];
53 postBuild = ''
54 for bin in $out/bin/*; do
55 wrapProgram $bin \
56 --set JACK_PROMISCUOUS_SERVER 1 \
57 --run "umask 0"
58 done
59 '';
60 };
61
49 mpd = pkgs.callPackage ./customized/mpd.nix { 62 mpd = pkgs.callPackage ./customized/mpd.nix {
50 gmeSupport = false; 63 gmeSupport = false;
51 game-music-emu = null; 64 game-music-emu = null;