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

stdenv.mkDerivation rec {
  pname = "aucatctl";
  version = "0.1";

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

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

  outputs = [ "out" "man" ];

  preBuild = ''
    makeFlagsArray+=("PREFIX=$out")
  '' + lib.optionalString
    (!stdenv.isDarwin && !stdenv.targetPlatform.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;
  };
}