about summary refs log tree commit diff
path: root/pkgs/applications/audio/bolliedelayxt.lv2/default.nix
blob: 7ea601dcd923d8d367801b02afd27c88bc2353ea (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
{ lib, stdenv, fetchFromGitHub, lv2 }:

stdenv.mkDerivation  rec {
  pname = "bolliedelayxt.lv2";
  version = "unstable-2017-11-02";

  src = fetchFromGitHub {
    owner = "MrBollie";
    repo = pname;
    rev = "49c488523c8fb71cb2222d41f9f66ee0cb6b6d82";
    sha256 = "sha256-7GM3YccN22JQdQ5ng9HFs9R6Ex/d+XP/khTQsgbGcAw=";
  };

  buildInputs = [ lv2 ];

  makeFlags = [ "PREFIX=$(out)" ];

  meta = with lib; {
    description = "A flexible LV2 delay plugin";
    homepage = "https://github.com/MrBollie/bolliedelayxt.lv2";
    license = licenses.gpl3Plus;
    maintainers = [ maintainers.magnetophon ];
    platforms = platforms.linux;
  };
}