mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 02:03:01 +00:00
32 lines
840 B
Nix
32 lines
840 B
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, dbus, mpv-unwrapped }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mpv-inhibit-gnome";
|
|
version = "0.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Guldoman";
|
|
repo = "mpv_inhibit_gnome";
|
|
rev = "v${version}";
|
|
hash = "sha256-LSGg5gAQE2JpepBqhz6D6d3NlqYaU4bjvYf1F+oLphQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ dbus mpv-unwrapped ];
|
|
|
|
passthru.scriptName = "mpv_inhibit_gnome.so";
|
|
|
|
installPhase = ''
|
|
install -D ./lib/mpv_inhibit_gnome.so $out/share/mpv/scripts/mpv_inhibit_gnome.so
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "This mpv plugin prevents screen blanking in GNOME";
|
|
homepage = "https://github.com/Guldoman/mpv_inhibit_gnome";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ myaats ];
|
|
};
|
|
}
|