lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

supercollider: fix build with libsndfile >=1.1.0

+7 -1
+7 -1
pkgs/development/interpreters/supercollider/default.nix
··· 1 - { lib, stdenv, mkDerivation, fetchurl, cmake 1 + { lib, stdenv, mkDerivation, fetchurl, fetchpatch, cmake 2 2 , pkg-config, alsa-lib, libjack2, libsndfile, fftw 3 3 , curl, gcc, libXt, qtbase, qttools, qtwebengine 4 4 , readline, qtwebsockets, useSCEL ? false, emacs ··· 18 18 patches = [ 19 19 # add support for SC_DATA_DIR and SC_PLUGIN_DIR env vars to override compile-time values 20 20 ./supercollider-3.12.0-env-dirs.patch 21 + 22 + # fix issue with libsndfile >=1.1.0 23 + (fetchpatch { 24 + url = "https://github.com/supercollider/supercollider/commit/b9dd70c4c8d61c93d7a70645e0bd18fa76e6834e.patch"; 25 + hash = "sha256-6FhEHyY0rnE6d7wC+v0U9K+L0aun5LkTqaEFhr3eQNw="; 26 + }) 21 27 ]; 22 28 23 29 nativeBuildInputs = [ cmake pkg-config qttools ];