1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

libfishsound at 1.0.0

This commit is contained in:
Jos van den Oever 2020-02-16 23:47:44 +01:00
parent 3990b914c3
commit eb1ffda13c
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, fetchurl, libvorbis, speex, flac, pkgconfig }:
stdenv.mkDerivation rec {
name = "libfishsound-1.0.0";
src = fetchurl {
url = "http://downloads.xiph.org/releases/libfishsound/${name}.tar.gz";
sha256 = "1iz7mn6hw2wg8ljaw74f4g2zdj68ib88x4vjxxg3gjgc5z75f2rf";
};
propagatedBuildInputs = [ libvorbis speex flac ];
nativeBuildInputs = [ pkgconfig ];
meta = with stdenv.lib; {
homepage = https://xiph.org/fishsound/;
description = ''libfishsound by itself is designed to handle raw codec streams from a lower level layer such as UDP datagrams. When these codecs are used in files, they are commonly encapsulated in Ogg to produce Ogg FLAC, Speex and Ogg Vorbis files.
libfishsound is a wrapper around the existing codec libraries and provides a consistent, higher-level programming interface. It has been designed for use in a wide variety of applications; it has no direct dependencies on Ogg encapsulation, though it is most commonly used in conjunction with liboggz to decode or encode FLAC, Speex or Vorbis audio tracks in Ogg files, including Ogg Theora and Annodex.
FishSound has been developed and tested on GNU/Linux, Darwin/MacOSX and Win32. It probably also works on other Unix-like systems via GNU autoconf. For Win32: nmake Makefiles, Visual Studio .NET 2003 solution files and Visual C++ 6.0 workspace files are all provided in the source distribution.'';
platforms = platforms.unix;
license = licenses.bsd3;
};
}

View file

@ -12438,6 +12438,8 @@ in
libfilezilla = callPackage ../development/libraries/libfilezilla { };
libfishsound = callPackage ../development/libraries/libfishsound { };
libfm = callPackage ../development/libraries/libfm { };
libfm-extra = libfm.override {
extraOnly = true;