22 lines
478 B
Nix
22 lines
478 B
Nix
{ lib, fetchFromGitHub }:
|
|
|
|
rec {
|
|
version = "1.1.4";
|
|
|
|
useDune2 = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "savonet";
|
|
repo = "ocaml-ffmpeg";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-IM7bzOZAZQjLz4YjRTMU5fZgrA2QTZcSDMgclDo4sn0=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/savonet/ocaml-ffmpeg";
|
|
description = "Bindings for the ffmpeg libraries";
|
|
license = licenses.lgpl21Only;
|
|
maintainers = with maintainers; [ dandellion ];
|
|
};
|
|
}
|