about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/audio/lv2/default.nix
blob: d026dd258bc7e6f180b07e21fa1a0d552be8e0e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, gtk2, libsndfile, pkgconfig, python, wafHook }:

stdenv.mkDerivation rec {
  name = "lv2-${version}";
  version = "1.16.0";

  src = fetchurl {
    url = "http://lv2plug.in/spec/${name}.tar.bz2";
    sha256 = "1ppippbpdpv13ibs06b0bixnazwfhiw0d0ja6hx42jnkgdyp5hyy";
  };

  nativeBuildInputs = [ pkgconfig wafHook ];
  buildInputs = [ gtk2 libsndfile python ];

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