bitwig: add some more plugins
This commit is contained in:
parent
84aa8fb754
commit
1ccd0950dc
3 changed files with 36 additions and 3 deletions
|
@ -8,9 +8,13 @@
|
|||
# ---------------
|
||||
{ pkgs ? import <nixpkgs> { } }:
|
||||
|
||||
let
|
||||
|
||||
unstable = import <nixpkgs-unstable> { };
|
||||
|
||||
# function call
|
||||
# -------------
|
||||
(pkgs.buildFHSUserEnv {
|
||||
in (pkgs.buildFHSUserEnv {
|
||||
|
||||
# name of the programm
|
||||
# --------------------
|
||||
|
@ -67,6 +71,9 @@
|
|||
distrho
|
||||
zam-plugins
|
||||
calf
|
||||
carla
|
||||
unstable.bshapr
|
||||
lv2vst
|
||||
|
||||
];
|
||||
|
||||
|
|
|
@ -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
24
pkgs/lv2vst/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue