summary refs log tree commit diff
path: root/pkgs/applications/audio/aucatctl/default.nix
blob: d3f814a7db897420c09af52816c26f554ce28304 (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
{ lib, stdenv, fetchurl, sndio, libbsd }:

stdenv.mkDerivation (finalAttrs: {
  pname = "aucatctl";
  version = "0.1";

  src = fetchurl {
    url = "http://www.sndio.org/${finalAttrs.pname}-${finalAttrs.version}.tar.gz";
    sha256 = "524f2fae47db785234f166551520d9605b9a27551ca438bd807e3509ce246cf0";
  };

  buildInputs = [ sndio ]
    ++ lib.optional (!stdenv.isDarwin && !stdenv.hostPlatform.isBSD)
    libbsd;

  outputs = [ "out" "man" ];

  preBuild = ''
    makeFlagsArray+=("PREFIX=$out")
  '' + lib.optionalString
    (!stdenv.isDarwin && !stdenv.hostPlatform.isBSD) ''
      makeFlagsArray+=(LDADD="-lsndio -lbsd")

      # Fix warning about implicit declaration of function 'strlcpy'
      substituteInPlace aucatctl.c \
        --replace '#include <string.h>' '#include <bsd/string.h>'
    '';

  meta = with lib; {
    description = "The aucatctl utility sends MIDI messages to control sndiod and/or aucat volumes";
    homepage = "http://www.sndio.org";
    license = licenses.isc;
    maintainers = with maintainers; [ sna ];
    platforms = platforms.unix;
  };
})