nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 21 lines 479 B view raw
1{ lib, fetchFromGitHub }: 2 3rec { 4 version = "1.1.3"; 5 6 useDune2 = true; 7 8 src = fetchFromGitHub { 9 owner = "savonet"; 10 repo = "ocaml-ffmpeg"; 11 rev = "v${version}"; 12 sha256 = "1l40dfc0v3wn2drfq0mclrc1lrlpycdjrkrw4knkwpsg0za68v4c"; 13 }; 14 15 meta = with lib; { 16 homepage = "https://github.com/savonet/ocaml-ffmpeg"; 17 description = "Bindings for the ffmpeg libraries"; 18 license = licenses.lgpl21Only; 19 maintainers = with maintainers; [ dandellion ]; 20 }; 21}