Commit 7803ac36 authored by aleksana's avatar aleksana
Browse files

gtklock-playerctl-module: init at 2.0.1

parent f7eeb485
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, gtk3
, playerctl
, libsoup
}:

stdenv.mkDerivation rec {
  pname = "gtklock-playerctl-module";
  version = "2.0.1";

  src = fetchFromGitHub {
    owner = "jovanlanik";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-kzGgqFDTeKL6Pfjram7pqVcIm8Avxsvpn1qFrcpd8dw=";
  };

  nativeBuildInputs = [ pkg-config ];

  buildInputs = [ gtk3 playerctl libsoup ];

  makeFlags = [ "PREFIX=$(out)" ];

  meta = with lib; {
    description = "Gtklock module adding power controls to the lockscreen";
    homepage = "https://github.com/jovanlanik/gtklock-powerbar-module";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ aleksana ];
    platforms = platforms.linux;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -30361,6 +30361,8 @@ with pkgs;
  gtklock = callPackage ../tools/wayland/gtklock { };
  gtklock-playerctl-module = callPackage ../tools/wayland/gtklock/playerctl-module.nix { };
  guardian-agent = callPackage ../tools/networking/guardian-agent { };
  gv = callPackage ../applications/misc/gv { };