mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
Merge pull request #266488 from nbraud/mpvScripts/convert
This commit is contained in:
commit
81327627c0
@ -1,7 +1,7 @@
|
|||||||
{ stdenvNoCC, fetchgit, lib
|
{ lib, fetchgit, buildLua
|
||||||
, yad, mkvtoolnix-cli, libnotify }:
|
, yad, mkvtoolnix-cli, libnotify }:
|
||||||
|
|
||||||
stdenvNoCC.mkDerivation {
|
buildLua {
|
||||||
pname = "mpv-convert-script";
|
pname = "mpv-convert-script";
|
||||||
version = "2016-03-18";
|
version = "2016-03-18";
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
@ -22,15 +22,9 @@ stdenvNoCC.mkDerivation {
|
|||||||
'yad_exe = "${yad}/bin/yad"' \
|
'yad_exe = "${yad}/bin/yad"' \
|
||||||
--replace 'notify_send_exe = "notify-send"' \
|
--replace 'notify_send_exe = "notify-send"' \
|
||||||
'notify_send_exe = "${libnotify}/bin/notify-send"' \
|
'notify_send_exe = "${libnotify}/bin/notify-send"' \
|
||||||
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
dontBuild = true;
|
scriptPath = "convert_script.lua";
|
||||||
installPhase = ''
|
|
||||||
mkdir -p $out/share/mpv/scripts
|
|
||||||
cp convert_script.lua $out/share/mpv/scripts
|
|
||||||
'';
|
|
||||||
passthru.scriptName = "convert_script.lua";
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Convert parts of a video while you are watching it in mpv";
|
description = "Convert parts of a video while you are watching it in mpv";
|
||||||
|
@ -11,7 +11,7 @@ in lib.recurseIntoAttrs
|
|||||||
autodeint = callPackage ./autodeint.nix { };
|
autodeint = callPackage ./autodeint.nix { };
|
||||||
autoload = callPackage ./autoload.nix { };
|
autoload = callPackage ./autoload.nix { };
|
||||||
chapterskip = callPackage ./chapterskip.nix { inherit buildLua; };
|
chapterskip = callPackage ./chapterskip.nix { inherit buildLua; };
|
||||||
convert = callPackage ./convert.nix { };
|
convert = callPackage ./convert.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; };
|
||||||
|
Loading…
Reference in New Issue
Block a user