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