nixpkgs/pkgs/development/octave-modules/video/default.nix
Emily b2b7066b25 octavePackages.video: 2.0.2 -> 2.1.1
Includes fixes for FFmpeg 7.
2024-08-22 15:22:25 +01:00

34 lines
683 B
Nix

{ buildOctavePackage
, stdenv
, lib
, fetchFromGitHub
, pkg-config
, ffmpeg_7
}:
buildOctavePackage rec {
pname = "video";
version = "2.1.1";
src = fetchFromGitHub {
owner = "Andy1978";
repo = "octave-video";
rev = version;
hash = "sha256-JFySAu/3lCnfuFMNGYPzX2MqhsRi1+IyJQBcKB9vCo0=";
};
nativeBuildInputs = [
pkg-config
];
propagatedBuildInputs = [
ffmpeg_7
];
meta = with lib; {
homepage = "https://octave.sourceforge.io/video/index.html";
license = with licenses; [ gpl3Plus bsd3 ];
maintainers = with maintainers; [ KarlJoad ];
description = "Wrapper for OpenCV's CvCapture_FFMPEG and CvVideoWriter_FFMPEG";
};
}