lol
0
fork

Configure Feed

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

libsndfile: add some key reverse-dependencies to passthru.tests

+24
+24
pkgs/development/libraries/libsndfile/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, autoreconfHook, autogen, pkg-config, python3 2 2 , flac, lame, libmpg123, libogg, libopus, libvorbis 3 3 , alsa-lib, Carbon, AudioToolbox 4 + 5 + # for passthru.tests 6 + , audacity 7 + , freeswitch 8 + , gst_all_1 9 + , libsamplerate 10 + , moc 11 + , pipewire 12 + , pulseaudio 4 13 }: 5 14 6 15 stdenv.mkDerivation rec { ··· 40 49 substituteInPlace tests/test_wrapper.sh \ 41 50 --replace '/usr/bin/env' "$(type -P env)" 42 51 ''; 52 + 53 + passthru.tests = { 54 + inherit 55 + audacity 56 + freeswitch 57 + libsamplerate 58 + moc 59 + pipewire 60 + pulseaudio; 61 + inherit (python3.pkgs) 62 + soundfile 63 + wavefile; 64 + inherit (gst_all_1) gst-plugins-bad; 65 + lame = (lame.override { sndfileFileIOSupport = true; }); 66 + }; 43 67 44 68 meta = with lib; { 45 69 description = "A C library for reading and writing files containing sampled sound";