2020-01-16 11:53:34 -08:00
|
|
|
{ stdenv, fetchurl, libiconv }:
|
2015-02-17 04:29:04 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "wavpack";
|
2020-05-10 17:06:26 -07:00
|
|
|
version = "5.3.0";
|
2015-02-17 04:29:04 -08:00
|
|
|
|
2015-05-04 01:09:42 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-11-11 13:56:16 -08:00
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin libiconv;
|
|
|
|
|
2015-02-17 04:29:04 -08:00
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "http://www.wavpack.com/${pname}-${version}.tar.bz2";
|
2020-05-10 17:06:26 -07:00
|
|
|
sha256 = "00baiag7rlkzc6545dqdp4p5sr7xc3n97n7qdkgx58c544x0pw5n";
|
2015-02-17 04:29:04 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Hybrid audio compression format";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.wavpack.com/";
|
2015-02-17 04:29:04 -08:00
|
|
|
license = licenses.bsd3;
|
2015-03-28 12:34:52 -07:00
|
|
|
platforms = platforms.unix;
|
2015-02-17 04:29:04 -08:00
|
|
|
maintainers = with maintainers; [ codyopel ];
|
|
|
|
};
|
|
|
|
}
|