mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
f88f273291
* ocamlPackages.duppy: 0.9.3 -> 0.9.4 * ocamlPackages.ffmpeg: 1.1.8 -> 1.1.11 * ocamlPackages.lastfm: 0.3.3 -> 0.3.4 * ocamlPackages.uri: 4.2.0 -> 4.4.0 Diff: https://github.com/mirage/ocaml-uri/compare/None...v4.4.0 * ocamlPackages.gd4o: remove, ocamlPackages.gd: init at 1.1 * ocamlPackages.mad: 0.5.2 -> 0.5.3 Diff: https://github.com/savonet/ocaml-mad/compare/v0.5.2...v0.5.3 * ocamlPackages.tsdl-image: 0.5 -> 0.6 Diff: https://github.com/sanette/tsdl-image/compare/0.5...0.6 * liquidsoap: small package fixups Diff: https://github.com/savonet/liquidsoap/compare/refs/tags/v2.2.4...v2.2.5
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 ];
|
|
};
|
|
}
|