mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
commit
8989fa4579
67
pkgs/applications/audio/vital/default.nix
Normal file
67
pkgs/applications/audio/vital/default.nix
Normal file
@ -0,0 +1,67 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchzip
|
||||
, autoPatchelfHook
|
||||
, makeBinaryWrapper
|
||||
|
||||
, alsa-lib
|
||||
, libjack2
|
||||
, curl
|
||||
, xorg
|
||||
, libGL
|
||||
, freetype
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "vital";
|
||||
version = "1.5.5";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://builds.vital.audio/VitalAudio/vital/${builtins.replaceStrings ["."] ["_"] finalAttrs.version}/VitalInstaller.zip";
|
||||
hash = "sha256-hCwXSUiBB0YpQ1oN6adLprwAoel6f72tBG5fEb61OCI=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoPatchelfHook
|
||||
makeBinaryWrapper
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
alsa-lib
|
||||
stdenv.cc.cc.lib
|
||||
libGL
|
||||
xorg.libSM
|
||||
xorg.libICE
|
||||
xorg.libX11
|
||||
freetype
|
||||
libjack2
|
||||
];
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
# copy each output to its destination (individually)
|
||||
mkdir -p $out/{bin,lib/{clap,vst,vst3}}
|
||||
for f in bin/Vital lib/{clap/Vital.clap,vst/Vital.so,vst3/Vital.vst3}; do
|
||||
cp -r $f $out/$f
|
||||
done
|
||||
|
||||
wrapProgram $out/bin/Vital \
|
||||
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ curl libjack2 ]}"
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
|
||||
meta = with lib; {
|
||||
description = "Spectral warping wavetable synth";
|
||||
homepage = "https://vital.audio/";
|
||||
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
||||
license = with licenses; [ unfree gpl3Plus ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
maintainers = with maintainers; [ PowerUser64 ];
|
||||
mainProgram = "Vital";
|
||||
};
|
||||
})
|
@ -33875,6 +33875,8 @@ with pkgs;
|
||||
|
||||
vieb = callPackage ../applications/networking/browsers/vieb { };
|
||||
|
||||
vital = callPackage ../applications/audio/vital { };
|
||||
|
||||
vivaldi = callPackage ../applications/networking/browsers/vivaldi { };
|
||||
|
||||
vivaldi-ffmpeg-codecs = callPackage ../applications/networking/browsers/vivaldi/ffmpeg-codecs.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user