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.

20 lines
469 B
Nix
Raw Normal View History

2021-10-31 03:15:16 +00:00
{ lib, fetchFromGitHub }:
rec {
version = "1.1.11";
2021-10-31 03:15:16 +00:00
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-ffmpeg";
rev = "refs/tags/v${version}";
sha256 = "sha256-Tr0YhoaaUSOlA7vlhAjPyFJI/iL7Z54oO27RnG7d+nA=";
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 ];
};
}