From dcfbe256f28c15f91160d2f534343bdafd681b91 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Thu, 25 Dec 2025 23:51:31 +0100 Subject: [PATCH] faust: add faust2sndfile --- pkgs/by-name/fa/faust2sndfile/package.nix | 26 +++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pkgs/by-name/fa/faust2sndfile/package.nix diff --git a/pkgs/by-name/fa/faust2sndfile/package.nix b/pkgs/by-name/fa/faust2sndfile/package.nix new file mode 100644 index 000000000000..f834b0c2b807 --- /dev/null +++ b/pkgs/by-name/fa/faust2sndfile/package.nix @@ -0,0 +1,26 @@ +{ + faust, + flac, + lame, + libmpg123, + libogg, + libopus, + libsndfile, + libvorbis, +}: + +faust.wrapWithBuildEnv { + + baseName = "faust2sndfile"; + + propagatedBuildInputs = [ + flac + lame + libmpg123 + libogg + libopus + libsndfile + libvorbis + ]; + +}