flac: 1.4.3 -> 1.5.0

This commit is contained in:
KSJ2000
2025-02-17 14:28:46 +02:00
parent 81d445f4e2
commit 3bf8a684b2
+9 -6
View File
@@ -1,8 +1,9 @@
{
lib,
stdenv,
fetchurl,
fetchFromGitHub,
cmake,
pandoc,
pkg-config,
doxygen,
graphviz,
@@ -11,16 +12,18 @@
stdenv.mkDerivation rec {
pname = "flac";
version = "1.4.3";
version = "1.5.0";
src = fetchurl {
url = "http://downloads.xiph.org/releases/flac/${pname}-${version}.tar.xz";
# Official checksum is published at https://github.com/xiph/flac/releases/tag/${version}
hash = "sha256-bFjmnNIjSPRBuGEJK4JeWR0Lgi4QbebrDuTQXScgW3A=";
src = fetchFromGitHub {
owner = "xiph";
repo = "flac";
tag = version;
hash = "sha256-B6XRai5UOAtY/7JXNbI3YuBgazi1Xd2ZOs6vvLq9LIs=";
};
nativeBuildInputs = [
cmake
pandoc
pkg-config
doxygen
graphviz