My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/applications/audio/csound/default.nix

42 lines
1.1 KiB

{ stdenv, fetchFromGitHub, cmake, libsndfile, flex, bison, boost
12 years ago
, alsaLib ? null
, libpulseaudio ? null
12 years ago
, tcltk ? null
, liblo ? null
12 years ago
# maybe csound can be compiled with support for those, see configure output
# , ladspa ? null
# , fluidsynth ? null
# , jack ? null
# , gmm ? null
# , wiiuse ? null
}:
stdenv.mkDerivation rec {
name = "csound-6.08.1";
version = "6.08.1";
12 years ago
enableParallelBuilding = true;
hardeningDisable = [ "format" ];
src = fetchFromGitHub {
owner = "csound";
repo = "csound";
rev = version;
sha256 = "03xnva17sw35ga3n96x1zdfgw913dga1hccly85wzfn0kxz4rld9";
12 years ago
};
nativeBuildInputs = [ cmake flex bison ];
buildInputs = [ libsndfile alsaLib libpulseaudio tcltk boost liblo ];
12 years ago
meta = with stdenv.lib; {
description = "Sound design, audio synthesis, and signal processing system, providing facilities for music composition and performance on all major operating systems and platforms";
12 years ago
homepage = http://www.csounds.com/;
license = licenses.gpl2;
maintainers = [maintainers.marcweber];
platforms = platforms.linux;
12 years ago
};
}