2015-11-11 21:56:16 +00:00
|
|
|
{ lib, stdenv, fetchurl, libiconv }:
|
2015-02-17 12:29:04 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "wavpack-${version}";
|
2016-08-05 09:36:15 +01:00
|
|
|
version = "4.80.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 {
|
|
|
|
url = "http://www.wavpack.com/${name}.tar.bz2";
|
2016-08-05 09:36:15 +01:00
|
|
|
sha256 = "1sbbwvqixg87h02avg0d5r64mpjz8cmhcc6j3s9wmlbvbykjw63r";
|
2015-02-17 12:29:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Hybrid audio compression format";
|
|
|
|
homepage = http://www.wavpack.com/;
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|