anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / audio / chuck / default.nix
blobdb42e60730eabd49e6691298d319c17bfc687987
1 { stdenv, lib, fetchurl, alsa-lib, bison, flex, libsndfile, which, DarwinTools, xcbuild
2 , AppKit, Carbon, CoreAudio, CoreMIDI, CoreServices, Kernel, MultitouchSupport
3 }:
5 stdenv.mkDerivation rec {
6   version = "1.4.2.0";
7   pname = "chuck";
9   src = fetchurl {
10     url = "http://chuck.cs.princeton.edu/release/files/chuck-${version}.tgz";
11     sha256 = "sha256-hIwsC9rYgXWSTFqUufKGqoT0Gnsf4nR4KQ0iSVbj8xg=";
12   };
14   nativeBuildInputs = [ flex bison which ]
15     ++ lib.optionals stdenv.hostPlatform.isDarwin [ DarwinTools xcbuild ];
17   buildInputs = [ libsndfile ]
18     ++ lib.optional (!stdenv.hostPlatform.isDarwin) alsa-lib
19     ++ lib.optionals stdenv.hostPlatform.isDarwin [ AppKit Carbon CoreAudio CoreMIDI CoreServices Kernel MultitouchSupport ];
21   patches = [ ./darwin-limits.patch ];
23   makeFlags = [ "-C src" "DESTDIR=$(out)/bin" ];
24   buildFlags = [ (if stdenv.hostPlatform.isDarwin then "mac" else "linux-alsa") ];
26   meta = with lib; {
27     description = "Programming language for real-time sound synthesis and music creation";
28     homepage = "http://chuck.cs.princeton.edu";
29     license = licenses.gpl2;
30     platforms = platforms.unix;
31     maintainers = with maintainers; [ ftrvxmtrx ];
32     mainProgram = "chuck";
33   };