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

35 lines
973 B
Nix
Raw Normal View History

2012-10-18 01:13:21 +00:00
{ stdenv, fetchurl, cmake, libsndfile, flex, bison
, alsaLib ? null
, libpulseaudio ? null
2012-10-18 01:13:21 +00:00
, tcltk ? null
# maybe csound can be compiled with support for those, see configure output
# , ladspa ? null
# , fluidsynth ? null
# , jack ? null
# , gmm ? null
# , wiiuse ? null
}:
stdenv.mkDerivation {
2014-11-18 20:31:08 +00:00
name = "csound-6.03.2";
2012-10-18 01:13:21 +00:00
enableParallelBuilding = true;
src = fetchurl {
2014-11-18 20:31:08 +00:00
url = mirror://sourceforge/csound/Csound6.03.2.tar.gz;
sha256 = "0w6ij57dbfjljpf05bb9r91jphwaq1v63rh0713vl2n11d73dy7m";
2012-10-18 01:13:21 +00:00
};
buildInputs = [ cmake libsndfile flex bison alsaLib libpulseaudio tcltk ];
2012-10-18 01:13:21 +00:00
meta = {
description = "sound design, audio synthesis, and signal processing system, providing facilities for music composition and performance on all major operating systems and platforms";
homepage = http://www.csounds.com/;
license = stdenv.lib.licenses.gpl2;
maintainers = [stdenv.lib.maintainers.marcweber];
platforms = stdenv.lib.platforms.linux;
};
}