mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
gtklock-powerbar-module: init at 2.0.1
This commit is contained in:
parent
7803ac3692
commit
d143ce64b1
32
pkgs/tools/wayland/gtklock/powerbar-module.nix
Normal file
32
pkgs/tools/wayland/gtklock/powerbar-module.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, gtk3
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gtklock-powerbar-module";
|
||||
version = "2.0.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jovanlanik";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-Ev6vjtvUSqP/+xTDRAqSYJ436WhZUtFRxSP7LoSK00w=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
buildInputs = [ gtk3 ];
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
@ -30363,6 +30363,8 @@ with pkgs;
|
||||
|
||||
gtklock-playerctl-module = callPackage ../tools/wayland/gtklock/playerctl-module.nix { };
|
||||
|
||||
gtklock-powerbar-module = callPackage ../tools/wayland/gtklock/powerbar-module.nix { };
|
||||
|
||||
guardian-agent = callPackage ../tools/networking/guardian-agent { };
|
||||
|
||||
gv = callPackage ../applications/misc/gv { };
|
||||
|
Loading…
Reference in New Issue
Block a user