Merge pull request #109323 from TredwellGit/wavpack
wavpack: 5.3.0 -> 5.4.0
This commit is contained in:
commit
aa36acbfd9
@ -1,21 +1,25 @@
|
|||||||
{ stdenv, fetchurl, libiconv }:
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, libiconv }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "wavpack";
|
pname = "wavpack";
|
||||||
version = "5.3.0";
|
version = "5.4.0";
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
buildInputs = stdenv.lib.optional stdenv.isDarwin libiconv;
|
buildInputs = stdenv.lib.optional stdenv.isDarwin libiconv;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "http://www.wavpack.com/${pname}-${version}.tar.bz2";
|
owner = "dbry";
|
||||||
sha256 = "00baiag7rlkzc6545dqdp4p5sr7xc3n97n7qdkgx58c544x0pw5n";
|
repo = "WavPack";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1b6szk2vmnqnv5w7h8yc1iazjlidlraq1lwjbmc3fi0snbn6qj44";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "Hybrid audio compression format";
|
description = "Hybrid audio compression format";
|
||||||
homepage = "http://www.wavpack.com/";
|
homepage = "https://www.wavpack.com/";
|
||||||
|
changelog = "https://github.com/dbry/WavPack/releases/tag/${version}";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = with maintainers; [ codyopel ];
|
maintainers = with maintainers; [ codyopel ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user