bitwig: add some more plugins

feature/hass
Ingolf Wagner 2020-02-28 23:57:05 +08:00
parent 84aa8fb754
commit 1ccd0950dc
Signed by: palo
GPG Key ID: 76BF5F1928B9618B
3 changed files with 36 additions and 3 deletions

View File

@ -8,9 +8,13 @@
# ---------------
{ pkgs ? import <nixpkgs> { } }:
# function call
# -------------
(pkgs.buildFHSUserEnv {
let
unstable = import <nixpkgs-unstable> { };
# function call
# -------------
in (pkgs.buildFHSUserEnv {
# name of the programm
# --------------------
@ -67,6 +71,9 @@
distrho
zam-plugins
calf
carla
unstable.bshapr
lv2vst
];

View File

@ -26,6 +26,8 @@ in {
bitwig-studio = callPackage ./bitwig-studio/bitwig-studio-environment.nix { };
lv2vst = callPackage ./lv2vst { };
landingpage = callPackage ./landingpage { };
bepasty-client-cli = callPackage ./bepasty-client-cli { };

24
pkgs/lv2vst/default.nix Normal file
View File

@ -0,0 +1,24 @@
{ stdenv, fetchgit, ... }:
stdenv.mkDerivation rec {
version = "2019-09-30";
name = "lv2vst-${version}";
src = fetchgit {
url = "https://github.com/x42/lv2vst.git";
rev = "3fc413550dbe7b37a60ad7808dde05c4670c7bb4";
sha256 = "0dq1r95fxqwirkyv91j4qbigrazh0wsy769kc27yysl69p3lpgq3";
};
installPhase = "PREFIX=$out VSTDIR=$out/lib/vst/ make install";
buildInputs = [ ];
meta = with stdenv.lib; {
description = "experimental LV2 to VST2.x wrapper";
homepage = "https://github.com/x42/lv2vst";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ mrVanDalo ];
};
}