Martin Becze 写道: > * gnu/packages/mp3.scm (libmp3splt): Added flac to the input of > libmp3slt so > that mp3splt can processes flac files. Thanks! I made some changes and pushed this patch as: --8<---------------cut here---------------start------------->8--- commit 0d5d1bdf911659f60601058e8e1678187b7ba664 (upstream/master) Author: Martin Becze gnu: libmp3splt: Support splitting FLAC files. * gnu/packages/mp3.scm (libmp3splt)[inputs]: Add flac. Signed-off-by: Tobias Geerinckx-Rice diff --git a/gnu/packages/mp3.scm b/gnu/packages/mp3.scm index 1350135328..4bdbe8b487 100644 --- a/gnu/packages/mp3.scm +++ b/gnu/packages/mp3.scm @@ -274,7 +274,8 @@ pre-defined or user-specifiable output format.") (base32 "1p1mn2hsmj5cp40fnc8g1yfvk72p8pjxi866gjdkgjsqrr7xdvih")))) (build-system gnu-build-system) - (inputs `(("libid3tag" ,libid3tag) + (inputs `(("flac" ,flac) + ("libid3tag" ,libid3tag) ("libmad" ,libmad) ("libogg" ,libogg) ("libltdl" ,libltdl) --8<---------------cut here---------------end--------------->8--- Kind regards, T G-R