mod-arpeggiator-lv2: init at unstable-2021-11-09

This commit is contained in:
Bart Brouns 2021-12-08 00:52:45 +01:00
parent 7fa8d14f50
commit 1c55acf8cd
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ 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=";
};
buildInputs = [ lv2 pkg-config ];
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "a LV2 arpeggiator";
homepage = "https://github.com/moddevices/mod-arpeggiator-lv2";
license = licenses.gpl2Plus;
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
};
}

View file

@ -26555,6 +26555,8 @@ with pkgs;
moc = callPackage ../applications/audio/moc { };
mod-arpeggiator-lv2 = callPackage ../applications/audio/mod-arpeggiator-lv2 { };
mod-distortion = callPackage ../applications/audio/mod-distortion { };
xmr-stak = callPackage ../applications/misc/xmr-stak {