nixpkgs/pkgs/development/ocaml-modules/ffmpeg/base.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
478 B
Nix
Raw Normal View History

2021-10-31 03:15:16 +00:00
{ lib, fetchFromGitHub }:
rec {
2022-09-29 12:00:26 +00:00
version = "1.1.6";
2021-10-31 03:15:16 +00:00
useDune2 = true;
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-ffmpeg";
rev = "v${version}";
2022-09-29 12:00:26 +00:00
sha256 = "sha256-NlWmt98QwuGFNP8FHnAR3C0DIiSfJ1ZJXeVFFZiOSXs=";
2021-10-31 03:15:16 +00:00
};
meta = with lib; {
homepage = "https://github.com/savonet/ocaml-ffmpeg";
description = "Bindings for the ffmpeg libraries";
license = licenses.lgpl21Only;
maintainers = with maintainers; [ dandellion ];
};
}