mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-20 07:31:19 +00:00
24 lines
583 B
Nix
24 lines
583 B
Nix
{ lib, fetchFromGitHub }:
|
|
|
|
rec {
|
|
version = "1.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "savonet";
|
|
repo = "ocaml-ffmpeg";
|
|
tag = "v${version}";
|
|
hash = "sha256-qGXuE+wHNuy24jeuGpvMlYIQw7N5g6tXMa7r0pwXVX0=";
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://github.com/savonet/ocaml-ffmpeg";
|
|
description = "Bindings for the ffmpeg libraries";
|
|
changelog = "https://raw.githubusercontent.com/savonet/ocaml-ffmpeg/refs/tags/${src.tag}/CHANGES";
|
|
license = lib.licenses.lgpl21Only;
|
|
maintainers = with lib.maintainers; [
|
|
dandellion
|
|
juaningan
|
|
];
|
|
};
|
|
}
|