1 { lib, stdenv, fetchFromGitHub, gettext, autoreconfHook, libiconv }:
3 stdenv.mkDerivation rec {
7 enableParallelBuilding = true;
9 nativeBuildInputs = [ autoreconfHook ];
10 buildInputs = [ libiconv ];
13 preAutoreconf = "cp ${gettext}/share/gettext/config.rpath .";
15 src = fetchFromGitHub {
19 hash = "sha256-fWAGE87JTNTnYoxrkMf3I8C53kZrQiiBy3Zyg0cw8Og=";
22 outputs = [ "out" "dev" "doc" "man" ];
25 description = "Hybrid audio compression format";
26 homepage = "https://www.wavpack.com/";
27 changelog = "https://github.com/dbry/WavPack/releases/tag/${version}";
28 license = licenses.bsd3;
29 platforms = platforms.unix;
30 maintainers = with maintainers; [ codyopel ];