2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub
|
2021-06-28 23:13:55 +00:00
|
|
|
, llvm_10, qt5, qrencode, libmicrohttpd, libjack2, alsa-lib, faust, curl
|
2022-04-27 09:35:20 +00:00
|
|
|
, bc, coreutils, which, libsndfile, flac, libogg, libvorbis, libopus, pkg-config, libxcb, cmake, gnutls, libtasn1, p11-kit
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "faustlive";
|
2023-11-16 04:20:00 +00:00
|
|
|
version = "2.5.16";
|
2020-04-24 23:36:52 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "grame-cncm";
|
|
|
|
repo = "faustlive";
|
2021-06-06 07:54:09 +00:00
|
|
|
rev = version;
|
2023-11-16 04:20:00 +00:00
|
|
|
sha256 = "sha256-O3IWx6Ht/xcb8NFxI7Biwck3dIHbxyof/zDgYDdzozY=";
|
2020-08-20 17:08:02 +00:00
|
|
|
fetchSubmodules = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
nativeBuildInputs = [ pkg-config qt5.wrapQtAppsHook cmake ];
|
2021-06-06 07:54:09 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [
|
2021-06-28 23:13:55 +00:00
|
|
|
llvm_10 qt5.qtbase qrencode libmicrohttpd libjack2 alsa-lib faust curl
|
2022-04-27 09:35:20 +00:00
|
|
|
bc coreutils which libsndfile flac libogg libvorbis libopus libxcb gnutls libtasn1 p11-kit
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/FaustLive --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ libmicrohttpd libsndfile faust llvm_10 ]}"
|
2020-08-20 17:08:02 +00:00
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
postPatch = "cd Build";
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A standalone just-in-time Faust compiler";
|
|
|
|
longDescription = ''
|
|
|
|
FaustLive is a standalone just-in-time Faust compiler. It tries to bring
|
|
|
|
together the convenience of a standalone interpreted language with the
|
|
|
|
efficiency of a compiled language. It's ideal for fast prototyping.
|
|
|
|
'';
|
2020-11-30 08:33:03 +00:00
|
|
|
homepage = "https://faust.grame.fr/";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.gpl3;
|
2021-06-06 07:54:09 +00:00
|
|
|
maintainers = with maintainers; [ magnetophon ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|