nixpkgs/pkgs/applications/audio/faust/faustlive.nix

44 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
2020-11-29 09:42:22 +00:00
, llvm, qt48Full, qrencode, libmicrohttpd_0_9_70, libjack2, alsaLib, faust, curl
2020-08-01 11:12:23 +00:00
, bc, coreutils, which, libsndfile, pkg-config
2018-08-22 09:45:07 +00:00
}:
2020-08-01 11:12:23 +00:00
stdenv.mkDerivation rec {
pname = "faustlive";
2020-08-01 11:12:23 +00:00
version = "2.5.4";
2018-08-22 09:45:07 +00:00
src = fetchFromGitHub {
owner = "grame-cncm";
repo = "faustlive";
2020-08-01 11:12:23 +00:00
rev = version;
sha256 = "0npn8fvq8iafyamq4wrj1k1bmk4xd0my2sp3gi5jdjfx6hc1sm3n";
fetchSubmodules = true;
2018-08-22 09:45:07 +00:00
};
buildInputs = [
2020-11-29 09:42:22 +00:00
llvm qt48Full qrencode libmicrohttpd_0_9_70 libjack2 alsaLib faust curl
2020-08-01 11:12:23 +00:00
bc coreutils which libsndfile pkg-config
2018-08-22 09:45:07 +00:00
];
makeFlags = [ "PREFIX=$(out)" ];
2020-08-01 11:12:23 +00:00
postPatch = "cd Build";
installPhase = ''
install -d "$out/bin"
install -d "$out/share/applications"
install FaustLive/FaustLive "$out/bin"
install rsrc/FaustLive.desktop "$out/share/applications"
'';
2018-08-22 09:45:07 +00:00
meta = with lib; {
2018-08-22 09:45:07 +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.
'';
homepage = "https://faust.grame.fr/";
2018-08-22 09:45:07 +00:00
license = licenses.gpl3;
};
}