nixpkgs-suyu/pkgs/tools/wayland/mpvpaper/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
1.2 KiB
Nix
Raw Normal View History

2022-08-09 04:31:40 +02:00
{ stdenv
, lib
, meson
, cmake
, ninja
, wlroots
, wayland
, wayland-protocols
, wayland-scanner
2022-08-09 04:31:40 +02:00
, egl-wayland
, glew-egl
, mpv
, pkg-config
, fetchFromGitHub
, makeWrapper
, installShellFiles
}:
stdenv.mkDerivation rec {
pname = "mpvpaper";
2022-09-24 19:08:55 +02:00
version = "1.3";
2022-08-09 04:31:40 +02:00
src = fetchFromGitHub {
owner = "GhostNaN";
repo = pname;
rev = version;
2022-09-24 19:08:55 +02:00
sha256 = "sha256-0LjIwOY2hBUb0nziD3HLP2Ek5+8v3ntssRFD9eQgWkc=";
2022-08-09 04:31:40 +02:00
};
strictDeps = true;
2022-08-09 04:31:40 +02:00
nativeBuildInputs = [
meson
ninja
pkg-config
makeWrapper
installShellFiles
wayland-scanner
2022-08-09 04:31:40 +02:00
];
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 ];
};
}