mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
22 lines
480 B
Nix
22 lines
480 B
Nix
{ lib, fetchFromGitHub }:
|
|
|
|
rec {
|
|
version = "1.1.7";
|
|
|
|
duneVersion = "3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "savonet";
|
|
repo = "ocaml-ffmpeg";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-0QDy0ZUAtojYIuNliiDV2uywBnWxtKUhZ/LPqkfSOZ4=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/savonet/ocaml-ffmpeg";
|
|
description = "Bindings for the ffmpeg libraries";
|
|
license = licenses.lgpl21Only;
|
|
maintainers = with maintainers; [ dandellion ];
|
|
};
|
|
}
|