uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
27
pkgs/applications/video/ogmtools/default.nix
Normal file
27
pkgs/applications/video/ogmtools/default.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ lib, stdenv, fetchurl, libogg, libvorbis, libdvdread }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ogmtools";
|
||||
version = "1.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.bunkus.org/videotools/ogmtools/ogmtools-${version}.tar.bz2";
|
||||
sha256 = "1spx81p5wf59ksl3r3gvf78d77sh7gj8a6lw773iv67bphfivmn8";
|
||||
};
|
||||
|
||||
buildInputs = [ libogg libvorbis libdvdread ];
|
||||
|
||||
NIX_CFLAGS_COMPILE = [ "-std=c++14" ];
|
||||
|
||||
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/";
|
||||
license = lib.licenses.gpl2;
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue