Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
19 lines
469 B
Nix
19 lines
469 B
Nix
{ lib, fetchFromGitHub }:
|
|
|
|
rec {
|
|
version = "1.1.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "savonet";
|
|
repo = "ocaml-ffmpeg";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-Tr0YhoaaUSOlA7vlhAjPyFJI/iL7Z54oO27RnG7d+nA=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/savonet/ocaml-ffmpeg";
|
|
description = "Bindings for the ffmpeg libraries";
|
|
license = licenses.lgpl21Only;
|
|
maintainers = with maintainers; [ dandellion ];
|
|
};
|
|
}
|