nixpkgs/pkgs/applications/video/ogmtools/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
874 B
Nix
Raw Normal View History

2021-01-15 05:42:41 +00:00
{ lib, stdenv, fetchurl, libogg, libvorbis, libdvdread }:
2012-06-28 09:38:49 +00:00
stdenv.mkDerivation rec {
pname = "ogmtools";
version = "1.5";
2012-06-28 09:38:49 +00:00
src = fetchurl {
url = "https://www.bunkus.org/videotools/ogmtools/ogmtools-${version}.tar.bz2";
2012-06-28 09:38:49 +00:00
sha256 = "1spx81p5wf59ksl3r3gvf78d77sh7gj8a6lw773iv67bphfivmn8";
};
buildInputs = [ libogg libvorbis libdvdread ];
2012-06-28 09:38:49 +00:00
env.NIX_CFLAGS_COMPILE = toString [ "-std=c++14" ];
2022-05-12 21:54:38 +00:00
2012-06-28 09:38:49 +00:00
meta = {
description = "Tools for modifying and inspecting OGG media streams";
longDescription = ''
These tools allow information about (ogminfo) or extraction from
(ogmdemux) or creation of (ogmmerge) OGG media streams. Includes dvdxchap
tool for extracting chapter information from DVD.
'';
homepage = "https://www.bunkus.org/videotools/ogmtools/";
2021-01-15 05:42:41 +00:00
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
2012-06-28 09:38:49 +00:00
};
}