about summary refs log tree commit diff
path: root/pkgs/applications/audio/artyFX/default.nix
blob: e60381710c3c16056cf2d29ee0da6d76afaa6787 (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, fetchgit, cairomm, cmake, jack2, libpthreadstubs, libXdmcp, libxshmfence, libsndfile, lv2, ntk, pkgconfig }:

stdenv.mkDerivation rec {
  name = "artyFX-git-${version}";
  version = "2015-05-07";

  src = fetchgit {
    url = "https://github.com/harryhaaren/openAV-ArtyFX.git";
    rev = "3a8cb9a5e4ffaf27a497a31cc9cd6f2e79622d5b";
    sha256 = "2e3f6ab6f829c0ec177e85f4e419286616cf35fb7303445caa09d3438cac27d5";
  };

  buildInputs = [ cairomm cmake jack2 libpthreadstubs libXdmcp libxshmfence libsndfile lv2 ntk pkgconfig   ];

  meta = with stdenv.lib; {
    homepage = http://openavproductions.com/artyfx/;
    description = "A LV2 plugin bundle of artistic realtime effects";
    license = licenses.gpl2;
    maintainers = [ maintainers.magnetophon ];
    platforms = platforms.linux;
  };
}