summaryrefslogtreecommitdiff
path: root/custom/trivmix-service.nix
blob: 7d02741fc8b6d1f6ed67cdf90f62af55eb87f00d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ name
, run ? null
, connectOut ? null
, connectIn ? null
, trivmix
, stdenv
, makeWrapper
, jack2
}:

let
  genRun = if ! isNull run then run else (
    "${derivRun}/bin/run.sh"
  );
  derivRun = stdenv.mkDerivation {
    name = "trivmix-run";
    src = builtins.toFile "run.sh" ''
      #!/bin/sh

      ${if ! isNull connectIn then "jack_connect ${connectIn} $1" else ""}
      ${if ! isNull connectOut then "jack_connect $2 ${connectOut}" else ""}
    '';
    unpackPhase = "cat";
    buildInputs = [ makeWrapper ];
    installPhase = ''
      mkdir -p $out/bin
      cp $src $out/bin/run.sh
      chmod 755 $out/bin/run.sh
      wrapProgram $out/bin/run.sh \
        --prefix PATH : ${jack2}/bin
    '';
  };
in rec {
  out = {
    wantedBy = [ "sound.target" ];
    requires = [ "jack.service" ];
    serviceConfig = {
      Type = "simple";
      ExecStart = "${trivmix}/bin/trivmix --client ${name} --run ${genRun} --dir /run/${name}";
      User = "jack";
      Group = "audio";
    };
  };
}