summary refs log tree commit diff
path: root/pkgs/applications/audio/flac
diff options
context:
space:
mode:
authorRuud van Asseldonk <dev@veniogames.com>2022-09-14 18:21:58 +0200
committerRuud van Asseldonk <dev@veniogames.com>2022-09-15 19:27:56 +0200
commitb52db2e48020e7a7499aa66e51288530413214fc (patch)
tree214e87cb69369cf7028e72a5a4a4b90d2a06d41d /pkgs/applications/audio/flac
parent38077e42629c41ad3766f67d1bb1447b63ac8d5b (diff)
flac: 1.3.4 -> 1.4.0
Also adopt the package as a maintainer. I am subscribed to the flac-dev
mailing list and I maintain an alternative flac decoder so I keep an eye
out on developments upstream.
Diffstat (limited to 'pkgs/applications/audio/flac')
-rw-r--r--pkgs/applications/audio/flac/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/audio/flac/default.nix b/pkgs/applications/audio/flac/default.nix
index 621804840bf02..0715e42b1f167 100644
--- a/pkgs/applications/audio/flac/default.nix
+++ b/pkgs/applications/audio/flac/default.nix
@@ -2,11 +2,12 @@
 
 stdenv.mkDerivation rec {
   pname = "flac";
-  version = "1.3.4";
+  version = "1.4.0";
 
   src = fetchurl {
     url = "http://downloads.xiph.org/releases/flac/${pname}-${version}.tar.xz";
-    sha256 = "0dz7am8kbc97a6afml1h4yp085274prg8j7csryds8m3fmz61w4g";
+    # Official checksum is published at https://github.com/xiph/flac/releases/tag/1.4.0.
+    sha256 = "af41c0733c93c237c3e52f64dd87e3b0d9af38259f1c7d11e8cbf583c48c2506";
   };
 
   buildInputs = [ libogg ];
@@ -20,5 +21,6 @@ stdenv.mkDerivation rec {
     description = "Library and tools for encoding and decoding the FLAC lossless audio file format";
     platforms = platforms.all;
     license = licenses.bsd3;
+    maintainers = with maintainers; [ ruuda ];
   };
 }