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

42 lines
1.4 KiB
Nix
Raw Normal View History

2018-08-17 03:54:32 +00:00
{ stdenv, lib, fetchurl, alsaLib, bison, flex, libsndfile, which
2018-03-08 22:33:35 +00:00
, AppKit, Carbon, CoreAudio, CoreMIDI, CoreServices, Kernel
}:
2014-10-27 22:28:10 +00:00
stdenv.mkDerivation rec {
2019-07-31 12:05:55 +00:00
version = "1.4.0.0";
pname = "chuck";
2014-10-27 22:28:10 +00:00
src = fetchurl {
url = "http://chuck.cs.princeton.edu/release/files/chuck-${version}.tgz";
2019-07-31 12:05:55 +00:00
sha256 = "1b17rsf7bv45gfhyhfmpz9d4rkxn24c0m2hgmpfjz3nlp0rf7bic";
2014-10-27 22:28:10 +00:00
};
2018-08-17 03:54:32 +00:00
nativeBuildInputs = [ flex bison which ];
buildInputs = [ libsndfile ]
++ lib.optional (!stdenv.isDarwin) alsaLib
++ lib.optional stdenv.isDarwin [ AppKit Carbon CoreAudio CoreMIDI CoreServices Kernel ];
2014-10-27 22:28:10 +00:00
2019-07-31 12:05:55 +00:00
patches = [ ./darwin-limits.patch ];
2018-03-08 22:33:35 +00:00
2018-08-17 03:54:32 +00:00
NIX_CFLAGS_COMPILE = lib.optional stdenv.isDarwin "-Wno-missing-sysroot";
NIX_LDFLAGS = lib.optional stdenv.isDarwin "-framework MultitouchSupport";
2014-10-27 22:28:10 +00:00
postPatch = ''
2019-07-31 12:05:55 +00:00
substituteInPlace src/core/makefile.x/makefile.osx \
2018-08-17 03:54:32 +00:00
--replace "weak_framework" "framework" \
2019-07-31 12:05:55 +00:00
--replace "MACOSX_DEPLOYMENT_TARGET=10.9" "MACOSX_DEPLOYMENT_TARGET=$MACOSX_DEPLOYMENT_TARGET"
2018-03-08 22:33:35 +00:00
'';
2014-10-27 22:28:10 +00:00
2018-08-17 03:54:32 +00:00
makeFlags = [ "-C src" "DESTDIR=$(out)/bin" ];
buildFlags = [ (if stdenv.isDarwin then "osx" else "linux-alsa") ];
2014-10-27 22:28:10 +00:00
2018-08-17 03:54:32 +00:00
meta = with lib; {
2014-10-27 22:28:10 +00:00
description = "Programming language for real-time sound synthesis and music creation";
homepage = http://chuck.cs.princeton.edu;
2017-03-05 14:43:12 +00:00
license = licenses.gpl2;
2019-07-31 12:05:55 +00:00
platforms = platforms.unix;
2017-03-05 14:43:12 +00:00
maintainers = with maintainers; [ ftrvxmtrx ];
2014-10-27 22:28:10 +00:00
};
}