mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
31 lines
678 B
Nix
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 ];
|
|
};
|
|
})
|