2021-01-19 06:50:56 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, autogen, flac, libogg, libopus, libvorbis, pkg-config, python3
|
2016-05-05 23:39:58 +01:00
|
|
|
, Carbon, AudioToolbox
|
2015-11-11 21:55:44 +00:00
|
|
|
}:
|
2005-10-26 16:58:09 +01:00
|
|
|
|
2012-08-25 01:43:48 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-11-12 02:40:24 +00:00
|
|
|
pname = "libsndfile";
|
|
|
|
version = "1.0.30";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1rh79y4s4m2wcm2kahmzs2kijpdpayif2gyca6m71f3k7jbhgcwa";
|
2009-12-13 20:19:03 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook autogen pkg-config python3 ];
|
2020-11-12 02:40:24 +00:00
|
|
|
buildInputs = [ flac libogg libopus libvorbis ]
|
2016-05-05 23:39:58 +01:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ Carbon AudioToolbox ];
|
2010-10-28 15:00:41 +01:00
|
|
|
|
2012-08-23 20:01:00 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-07-11 10:14:14 +01:00
|
|
|
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
2012-08-23 20:01:00 +01:00
|
|
|
|
2013-07-04 06:02:09 +01:00
|
|
|
# need headers from the Carbon.framework in /System/Library/Frameworks to
|
|
|
|
# compile this on darwin -- not sure how to handle
|
2014-07-23 10:00:41 +01:00
|
|
|
preConfigure = stdenv.lib.optionalString stdenv.isDarwin
|
|
|
|
''
|
2014-07-24 20:53:46 +01:00
|
|
|
NIX_CFLAGS_COMPILE+=" -I$SDKROOT/System/Library/Frameworks/Carbon.framework/Versions/A/Headers"
|
2014-07-23 10:00:41 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
# Needed on Darwin.
|
|
|
|
NIX_CFLAGS_LINK = "-logg -lvorbis";
|
2013-07-04 06:02:09 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A C library for reading and writing files containing sampled sound";
|
2020-11-12 02:40:24 +00:00
|
|
|
homepage = "https://libsndfile.github.io/libsndfile/";
|
2013-07-04 06:02:09 +01:00
|
|
|
license = licenses.lgpl2Plus;
|
2013-08-16 22:44:33 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2015-04-26 04:39:49 +01:00
|
|
|
platforms = platforms.unix;
|
2013-07-04 06:02:09 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Libsndfile is a C library for reading and writing files containing
|
|
|
|
sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format)
|
|
|
|
through one standard library interface. It is released in source
|
|
|
|
code format under the GNU Lesser General Public License.
|
|
|
|
|
|
|
|
The library was written to compile and run on a Linux system but
|
2017-08-06 23:05:18 +01:00
|
|
|
should compile and run on just about any Unix (including macOS).
|
2013-07-04 06:02:09 +01:00
|
|
|
There are also pre-compiled binaries available for 32 and 64 bit
|
|
|
|
windows.
|
|
|
|
|
|
|
|
It was designed to handle both little-endian (such as WAV) and
|
|
|
|
big-endian (such as AIFF) data, and to compile and run correctly on
|
|
|
|
little-endian (such as Intel and DEC/Compaq Alpha) processor systems
|
|
|
|
as well as big-endian processor systems such as Motorola 68k, Power
|
|
|
|
PC, MIPS and SPARC. Hopefully the design of the library will also
|
|
|
|
make it easy to extend for reading and writing new sound file
|
|
|
|
formats.
|
|
|
|
'';
|
2005-10-26 16:58:09 +01:00
|
|
|
};
|
|
|
|
}
|