Commit 71f9683d authored by aleksana's avatar aleksana
Browse files

gtklock-userinfo-module: init at 2.0.0

parent d143ce64
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, gtk3
, glib
, accountsservice
}:

stdenv.mkDerivation rec {
  pname = "gtklock-userinfo-module";
  version = "2.0.0";

  src = fetchFromGitHub {
    owner = "jovanlanik";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-7dtw6GZ7l0fbTxRxMWH4yRj9Zqz9KB3acmwnF/8LALg=";
  };

  nativeBuildInputs = [ pkg-config ];

  buildInputs = [ gtk3 glib accountsservice ];

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

  meta = with lib; {
    description = "Gtklock module adding user info 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
@@ -30365,6 +30365,8 @@ with pkgs;
  gtklock-powerbar-module = callPackage ../tools/wayland/gtklock/powerbar-module.nix { };
  gtklock-userinfo-module = callPackage ../tools/wayland/gtklock/userinfo-module.nix { };
  guardian-agent = callPackage ../tools/networking/guardian-agent { };
  gv = callPackage ../applications/misc/gv { };