Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / ffmpeg / base.nix
blobe8bb6128db62f86f03696fd80936d1e089374fd9
1 { lib, fetchFromGitHub }:
3 rec {
4   version = "1.1.8";
6   src = fetchFromGitHub {
7     owner = "savonet";
8     repo = "ocaml-ffmpeg";
9     rev = "v${version}";
10     sha256 = "sha256-XqZATaxpW0lEdrRTXVTc0laQAx437+eoa/zOzZV1kHk=";
11   };
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   };