nixpkgs/pkgs/development/libraries/libcaption/default.nix
2023-08-29 21:04:18 +02:00

31 lines
678 B
Nix

{ stdenv
, lib
, fetchFromGitHub
, cmake
, re2c
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libcaption";
version = "0.7";
src = fetchFromGitHub {
owner = "szatmary";
repo = "libcaption";
rev = finalAttrs.version;
sha256 = "sha256-OBtxoFJF0cxC+kfSK8TIKIdLkmCh5WOJlI0fejnisJo=";
fetchSubmodules = true;
};
nativeBuildInputs = [ cmake ];
buildInputs = [ re2c ];
meta = with lib; {
description = "Free open-source CEA608 / CEA708 closed-caption encoder/decoder";
homepage = "https://github.com/szatmary/libcaption";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ pschmitt ];
};
})