mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
Merge pull request #273176 from nbraud/mpvScripts/cutter
mpvScripts.cutter: unstable-2021-02-03 → 2023-11-09
This commit is contained in:
commit
76a8b682db
@ -1,19 +1,16 @@
|
|||||||
{ lib, stdenvNoCC, fetchFromGitHub, makeWrapper }:
|
{ lib, buildLua, fetchFromGitHub, makeWrapper }:
|
||||||
|
|
||||||
stdenvNoCC.mkDerivation {
|
buildLua {
|
||||||
pname = "video-cutter";
|
pname = "video-cutter";
|
||||||
version = "unstable-2021-02-03";
|
version = "unstable-2023-11-09";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "rushmj";
|
owner = "rushmj";
|
||||||
repo = "mpv-video-cutter";
|
repo = "mpv-video-cutter";
|
||||||
rev = "718d6ce9356e63fdd47208ec44f575a212b9068a";
|
rev = "01a0396c075d5f8bbd1de5b571e6231f8899ab65";
|
||||||
sha256 = "sha256-ramID1DPl0UqEzevpqdYKb9aaW3CAy3Dy9CPb/oJ4eY=";
|
sha256 = "sha256-veoRFzUCRH8TrvR7x+WWoycpDyxqrJZ/bnp61dVc0pE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
dontBuild = true;
|
|
||||||
dontCheck = true;
|
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
@ -27,21 +24,19 @@ stdenvNoCC.mkDerivation {
|
|||||||
--replace '~/.config/mpv/scripts' "''${XDG_CONFIG_HOME:-~/.config}/mpv/cutter"
|
--replace '~/.config/mpv/scripts' "''${XDG_CONFIG_HOME:-~/.config}/mpv/cutter"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
passthru.scriptName = "cutter.lua";
|
||||||
install -Dm755 c_concat.sh $out/share/mpv/scripts/c_concat.sh
|
extraScripts = [ "c_concat.sh" ];
|
||||||
install cutter.lua $out/share/mpv/scripts/cutter.lua
|
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
chmod 0755 $out/share/mpv/scripts/c_concat.sh
|
||||||
wrapProgram $out/share/mpv/scripts/c_concat.sh \
|
wrapProgram $out/share/mpv/scripts/c_concat.sh \
|
||||||
--run "mkdir -p ~/.config/mpv/cutter/"
|
--run "mkdir -p ~/.config/mpv/cutter/"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
passthru.scriptName = "cutter.lua";
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Cut videos and concat them automatically";
|
description = "Cut videos and concat them automatically";
|
||||||
homepage = "https://github.com/rushmj/mpv-video-cutter";
|
homepage = "https://github.com/rushmj/mpv-video-cutter";
|
||||||
# repo doesn't have a license
|
license = licenses.mit;
|
||||||
license = licenses.unfree;
|
|
||||||
maintainers = with maintainers; [ lom ];
|
maintainers = with maintainers; [ lom ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -12,6 +12,7 @@ in lib.recurseIntoAttrs
|
|||||||
autoload = callPackage ./autoload.nix { };
|
autoload = callPackage ./autoload.nix { };
|
||||||
chapterskip = callPackage ./chapterskip.nix { inherit buildLua; };
|
chapterskip = callPackage ./chapterskip.nix { inherit buildLua; };
|
||||||
convert = callPackage ./convert.nix { inherit buildLua; };
|
convert = callPackage ./convert.nix { inherit buildLua; };
|
||||||
|
cutter = callPackage ./cutter.nix { inherit buildLua; };
|
||||||
inhibit-gnome = callPackage ./inhibit-gnome.nix { };
|
inhibit-gnome = callPackage ./inhibit-gnome.nix { };
|
||||||
mpris = callPackage ./mpris.nix { };
|
mpris = callPackage ./mpris.nix { };
|
||||||
mpv-playlistmanager = callPackage ./mpv-playlistmanager.nix { inherit buildLua; };
|
mpv-playlistmanager = callPackage ./mpv-playlistmanager.nix { inherit buildLua; };
|
||||||
@ -27,7 +28,6 @@ in lib.recurseIntoAttrs
|
|||||||
visualizer = callPackage ./visualizer.nix { };
|
visualizer = callPackage ./visualizer.nix { };
|
||||||
vr-reversal = callPackage ./vr-reversal.nix { };
|
vr-reversal = callPackage ./vr-reversal.nix { };
|
||||||
webtorrent-mpv-hook = callPackage ./webtorrent-mpv-hook.nix { };
|
webtorrent-mpv-hook = callPackage ./webtorrent-mpv-hook.nix { };
|
||||||
cutter = callPackage ./cutter.nix { };
|
|
||||||
}
|
}
|
||||||
// (callPackage ./occivink.nix { inherit buildLua; }))
|
// (callPackage ./occivink.nix { inherit buildLua; }))
|
||||||
// lib.optionalAttrs config.allowAliases {
|
// lib.optionalAttrs config.allowAliases {
|
||||||
|
Loading…
Reference in New Issue
Block a user