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