nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, fetchFromGitHub }:
2
3rec {
4 version = "1.2.8";
5
6 src = fetchFromGitHub {
7 owner = "savonet";
8 repo = "ocaml-ffmpeg";
9 tag = "v${version}";
10 hash = "sha256-wQvpbvAAg4tybAFdGq0O9vfCc0v2iPFk04Q3zgTwa7Y=";
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 juaningan
22 ];
23 };
24}