summary refs log tree commit diff
path: root/pkgs/applications/audio/flac
diff options
context:
space:
mode:
authorVladimír Čunát <vladimir.cunat@nic.cz>2022-09-28 10:04:58 +0200
committerVladimír Čunát <vladimir.cunat@nic.cz>2022-09-28 10:04:58 +0200
commit9785e4a37e57642b09a57a0c5faf83d3b4b4654b (patch)
tree8e1d0104f66343911ff7872bed1a43ddafe82888 /pkgs/applications/audio/flac
parentb52db2e48020e7a7499aa66e51288530413214fc (diff)
flac: 1.4.0 -> 1.4.1
https://github.com/xiph/flac/releases/tag/1.4.1
Diffstat (limited to 'pkgs/applications/audio/flac')
-rw-r--r--pkgs/applications/audio/flac/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/audio/flac/default.nix b/pkgs/applications/audio/flac/default.nix
index 0715e42b1f167..c9e3b946dd19f 100644
--- a/pkgs/applications/audio/flac/default.nix
+++ b/pkgs/applications/audio/flac/default.nix
@@ -2,12 +2,12 @@
 
 stdenv.mkDerivation rec {
   pname = "flac";
-  version = "1.4.0";
+  version = "1.4.1";
 
   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/1.4.0.
-    sha256 = "af41c0733c93c237c3e52f64dd87e3b0d9af38259f1c7d11e8cbf583c48c2506";
+    # Official checksum is published at https://github.com/xiph/flac/releases/tag/${version}
+    sha256 = "91303c3e5dfde52c3e94e75976c0ab3ee14ced278ab8f60033a3a12db9209ae6";
   };
 
   buildInputs = [ libogg ];