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
25
pkgs/tools/cd-dvd/vobsub2srt/default.nix
Normal file
25
pkgs/tools/cd-dvd/vobsub2srt/default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ lib, stdenv, fetchFromGitHub, cmake, libtiff, pkg-config, tesseract }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vobsub2srt";
|
||||
version = "unstable-2014-08-17";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ruediger";
|
||||
repo = "VobSub2SRT";
|
||||
rev = "a6abbd61127a6392d420bbbebdf7612608c943c2";
|
||||
sha256 = "sha256-i6V2Owb8GcTcWowgb/BmdupOSFsYiCF2SbC9hXa26uY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkg-config ];
|
||||
buildInputs = [ libtiff ];
|
||||
propagatedBuildInputs = [ tesseract ];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/ruediger/VobSub2SRT";
|
||||
description = "Converts VobSub subtitles into SRT subtitles";
|
||||
license = lib.licenses.gpl3Plus;
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = [ lib.maintainers.ttuegel ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue