Merge pull request #185745 from AtilaSaraiva/mpvpaper

mpvpaper: init at 1.2.1
This commit is contained in:
Thiago Kenji Okada 2022-08-24 15:17:36 +01:00 committed by GitHub
commit 88457e848e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 67 additions and 0 deletions

View File

@ -0,0 +1,65 @@
{ stdenv
, lib
, meson
, cmake
, ninja
, wlroots
, wayland
, wayland-protocols
, egl-wayland
, glew-egl
, mpv
, pkg-config
, fetchFromGitHub
, makeWrapper
, installShellFiles
}:
stdenv.mkDerivation rec {
pname = "mpvpaper";
version = "1.2.1";
src = fetchFromGitHub {
owner = "GhostNaN";
repo = pname;
rev = version;
sha256 = "sha256-1+noph6iXM5OSNMFQyta/ttGyZQ6F7bWDQi8W190G5E=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
makeWrapper
installShellFiles
];
buildInputs = [
wlroots
wayland
wayland-protocols
egl-wayland
glew-egl
mpv
];
preInstall = ''
mv ../mpvpaper.man ../mpvpaper.1
'';
postInstall = ''
wrapProgram $out/bin/mpvpaper \
--prefix PATH : ${lib.makeBinPath [ mpv ]}
installManPage ../mpvpaper.1
'';
meta = with lib; {
description = "A video wallpaper program for wlroots based wayland compositors";
homepage = "https://github.com/GhostNaN/mpvpaper";
license = licenses.gpl3Only;
platforms = platforms.linux;
mainProgram = "mpvpaper";
maintainers = with maintainers; [ atila ];
};
}

View File

@ -29386,6 +29386,8 @@ with pkgs;
wrapMpv = callPackage ../applications/video/mpv/wrapper.nix { };
mpv = wrapMpv mpv-unwrapped {};
mpvpaper = callPackage ../tools/wayland/mpvpaper { };
mpvScripts = recurseIntoAttrs {
autoload = callPackage ../applications/video/mpv/scripts/autoload.nix {};
convert = callPackage ../applications/video/mpv/scripts/convert.nix {};