mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
mod-arpeggiator-lv2: init at unstable-2021-11-09
This commit is contained in:
parent
7fa8d14f50
commit
1c55acf8cd
26
pkgs/applications/audio/mod-arpeggiator-lv2/default.nix
Normal file
26
pkgs/applications/audio/mod-arpeggiator-lv2/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user