about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/audio/lv2/default.nix
blob: d0ef2e65c5989b9f5b5c18abcb2eac42b194926e (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
40
41
42
43
44
45
46
47
48
49
50
{ stdenv
, lib
, fetchurl
, libsndfile
, pkg-config
, python3
, wafHook
, pipewire
}:

stdenv.mkDerivation rec {
  pname = "lv2";
  version = "1.18.2";

  outputs = [ "out" "dev" ];

  src = fetchurl {
    url = "https://lv2plug.in/spec/${pname}-${version}.tar.bz2";
    sha256 = "sha256-TokfvHRMBYVb6136gugisUkX3Wbpj4K4Iw29HHqy4F4=";
  };

  nativeBuildInputs = [
    pkg-config
    wafHook
  ];

  buildInputs = [
    libsndfile
    python3
  ];

  wafConfigureFlags = [
    "--includedir=${placeholder "dev"}/include"
    "--bindir=${placeholder "dev"}/bin"
  ] ++ lib.optionals stdenv.isDarwin [
    "--lv2dir=${placeholder "out"}/lib/lv2"
  ];

  passthru.tests = {
    inherit pipewire;
  };

  meta = with lib; {
    homepage = "https://lv2plug.in";
    description = "A plugin standard for audio systems";
    license = licenses.mit;
    maintainers = with maintainers; [ goibhniu ];
    platforms = platforms.unix;
  };
}