Skip to content

Commit

Permalink
flac: 1.4.3 -> 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KSJ2000 committed Feb 11, 2025
1 parent 9b8d90a commit 2dd8f7c
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions pkgs/by-name/fl/flac/package.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
lib,
stdenv,
fetchurl,
fetchFromGitHub,
cmake,
pandoc,
pkg-config,
doxygen,
graphviz,
Expand All @@ -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
Expand Down

0 comments on commit 2dd8f7c

Please sign in to comment.