nixpkgs/pkgs/applications/audio/stochas/default.nix

34 lines
931 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, libX11, libXrandr, libXinerama, libXext, libXcursor, freetype, alsa-lib, libjack2 }:
2020-12-25 12:18:35 +00:00
stdenv.mkDerivation rec {
pname = "stochas";
2021-06-05 21:36:30 +00:00
version = "1.3.5";
2020-12-25 12:18:35 +00:00
src = fetchFromGitHub {
owner = "surge-synthesizer";
repo = pname;
rev = "v${version}";
2021-06-05 21:36:30 +00:00
sha256 = "1z8q53qfigw6wwbvpca92b9pf9d0mv3nyb0fmszz5ikj3pcybi7m";
2020-12-25 12:18:35 +00:00
fetchSubmodules = true;
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [
libX11 libXrandr libXinerama libXext libXcursor freetype alsa-lib libjack2
2020-12-25 12:18:35 +00:00
];
installPhase = ''
mkdir -p $out/lib/vst3
cp -r stochas_artefacts/Release/VST3/Stochas.vst3 $out/lib/vst3
'';
meta = with lib; {
2020-12-25 12:18:35 +00:00
description = "Probabilistic polyrhythmic sequencer plugin";
homepage = "https://stochas.org/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ magnetophon ];
platforms = platforms.unix;
};
}