summary refs log tree commit diff
path: root/pkgs/development/pure-modules/lv2/default.nix
blob: 742db4eac4131df8cc514aed289231679bdb3a6e (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
{ lib, stdenv, fetchurl, pkg-config, pure, lv2 }:

stdenv.mkDerivation rec {
  pname = "pure-lv2";
  version = "0.2";

  src = fetchurl {
    url = "https://bitbucket.org/purelang/pure-lang/downloads/pure-lv2-${version}.tar.gz";
    sha256 = "721cacd831781d8309e7ecabb0ee7c01da17e75c5642a5627cf158bfb36093e1";
  };

  nativeBuildInputs = [ pkg-config ];
  propagatedBuildInputs = [ pure lv2 ];
  makeFlags = [ "libdir=$(out)/lib" "prefix=$(out)/" ];
  setupHook = ../generic-setup-hook.sh;

  meta = {
    description = "A generic LV2 plugin wrapper for Pure which can be linked with batch-compiled Pure scripts to obtain LV2 plugin modules";
    homepage = "http://puredocs.bitbucket.org/pure-lv2.html";
    license = lib.licenses.bsd3;
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ asppsa ];
  };
}