1{ lib, fetchFromGitHub }:
2
3rec {
4 version = "1.2.5";
5
6 src = fetchFromGitHub {
7 owner = "savonet";
8 repo = "ocaml-ffmpeg";
9 tag = "v${version}";
10 hash = "sha256-MWO8B/L/KHLuq/BIIIidsLbFwGIwt/xj+/M1zEp8Z/8=";
11 };
12
13 meta = {
14 homepage = "https://github.com/savonet/ocaml-ffmpeg";
15 description = "Bindings for the ffmpeg libraries";
16 changelog = "https://raw.githubusercontent.com/savonet/ocaml-ffmpeg/refs/tags/${src.tag}/CHANGES";
17 license = lib.licenses.lgpl21Only;
18 maintainers = with lib.maintainers; [
19 dandellion
20 momeemt
21 ];
22 };
23}