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

42 lines
1.1 KiB
Nix
Raw Normal View History

2017-03-11 22:40:29 +00:00
{ stdenv, fetchFromGitHub, cmake, libsndfile, flex, bison, boost
2012-10-18 01:13:21 +00:00
, alsaLib ? null
, libpulseaudio ? null
2012-10-18 01:13:21 +00:00
, tcltk ? null
, liblo ? null
2012-10-18 01:13:21 +00:00
# maybe csound can be compiled with support for those, see configure output
# , ladspa ? null
# , fluidsynth ? null
# , jack ? null
# , gmm ? null
# , wiiuse ? null
}:
2017-03-11 22:40:29 +00:00
stdenv.mkDerivation rec {
name = "csound-6.08.1";
version = "6.08.1";
2012-10-18 01:13:21 +00:00
enableParallelBuilding = true;
hardeningDisable = [ "format" ];
2016-02-07 20:40:46 +00:00
2017-03-11 22:40:29 +00:00
src = fetchFromGitHub {
owner = "csound";
repo = "csound";
rev = version;
sha256 = "03xnva17sw35ga3n96x1zdfgw913dga1hccly85wzfn0kxz4rld9";
2012-10-18 01:13:21 +00:00
};
2017-03-11 22:40:29 +00:00
nativeBuildInputs = [ cmake flex bison ];
buildInputs = [ libsndfile alsaLib libpulseaudio tcltk boost liblo ];
2012-10-18 01:13:21 +00:00
2017-03-11 22:40:29 +00:00
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";
2012-10-18 01:13:21 +00:00
homepage = http://www.csounds.com/;
2017-03-11 22:40:29 +00:00
license = licenses.gpl2;
maintainers = [maintainers.marcweber];
platforms = platforms.linux;
2012-10-18 01:13:21 +00:00
};
}