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-01-16 19:53:34 +00:00
|
|
|
version = "5.2.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-01-16 19:53:34 +00:00
|
|
|
sha256 = "062f97bvm466ygvix3z0kbgffvvrc5cg2ak568jaq8r56v28q8rw";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|