about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/audio/jack-passthrough/default.nix
blob: 93f41f1b59529e4684571fbdef20e0519fa594a1 (plain) (blame)
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
{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, libjack2
, meson
, ninja
, fmt_9
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "jack-passthrough";
  version = "2021-9-25";

  # https://github.com/guysherman/jack-passthrough
  src = fetchFromGitHub {
    owner = "guysherman";
    repo = finalAttrs.pname;
    rev = "aad03b7c5ccc4a4dcb8fa38c49aa64cb9d628660";
    hash = "sha256-9IsNaLW5dYAqiwe+vX0+D3oIKFP2TIfy1q1YaqmS6wE=";
  };

  nativeBuildInputs = [ pkg-config meson ninja ];
  buildInputs = [ fmt_9 libjack2 ];

  meta = with lib; {
    description = "A simple app to help with JACK apps that behave strangely.";
    longDescription = ''
      Creates a JACK passthrough client with an arbitrary name and number of
      ports. Common uses include tricking stubborn applications into creating
      more ports than they normally would or to prevent them from
      auto-connecting to certain things.
    '';
    # license unknown: https://github.com/guysherman/jack-passthrough/issues/2
    license = licenses.unfree;
    maintainers = [ maintainers.PowerUser64 ];
    platforms = [ "x86_64-linux" ];
  };
})