1{ lib, fetchFromGitHub }:
2
3rec {
4 version = "1.2.1";
5
6 src = fetchFromGitHub {
7 owner = "savonet";
8 repo = "ocaml-ffmpeg";
9 rev = "refs/tags/v${version}";
10 sha256 = "sha256-Df+dU7Cd1rgsC/TelPzQ7wYlwsX9MGd8qcYsVN6dyMg=";
11 };
12
13 meta = with lib; {
14 homepage = "https://github.com/savonet/ocaml-ffmpeg";
15 description = "Bindings for the ffmpeg libraries";
16 license = licenses.lgpl21Only;
17 maintainers = with maintainers; [ dandellion ];
18 };
19}