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

stdenv.mkDerivation rec {

  pname = "mod-arpeggiator-lv2";
  version = "unstable-2021-11-09";

  src = fetchFromGitHub {
    owner = "moddevices";
    repo = pname;
    rev = "82f3d9f159ce216454656a8782362c3d5ed48bed";
    sha256 = "sha256-1KiWMTVTTf1/iR4AzJ1Oe0mOrWN5edsZN0tQMidgnRA=";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ lv2 ];

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

  meta = with lib; {
    description = "LV2 arpeggiator";
    homepage = "https://github.com/moddevices/mod-arpeggiator-lv2";
    license = licenses.gpl2Plus;
    maintainers = [ maintainers.magnetophon ];
    platforms = platforms.linux;
  };
}