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

42 lines
1.4 KiB
Nix
Raw Normal View History

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