Merge pull request #312551 from lunik1/fdkaac-1.0.6

fdkaac: 1.0.5 -> 1.0.6
This commit is contained in:
Daniel Schaefer 2024-07-07 18:14:34 +08:00 committed by GitHub
commit 628268f239
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,17 +1,17 @@
{ lib, stdenv, autoreconfHook, fetchFromGitHub, fdk_aac }:
{ lib, stdenv, autoreconfHook, fetchFromGitHub, pkg-config, fdk_aac }:
stdenv.mkDerivation rec {
pname = "fdkaac";
version = "1.0.5";
version = "1.0.6";
src = fetchFromGitHub {
owner = "nu774";
repo = pname;
rev = "v${version}";
sha256 = "sha256-GYvI9T5Bv2OcK0hMAQE7/tE6ajDyqkaak66b3Hc0Fls=";
hash = "sha256-nVVeYk7t4+n/BsOKs744stsvgJd+zNnbASk3bAgFTpk=";
};
nativeBuildInputs = [ autoreconfHook ];
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ fdk_aac ];