mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
gtkgreet: init at 0.7
This commit is contained in:
parent
90813f399b
commit
fdcb6d18dc
50
pkgs/os-specific/linux/gtkgreet/default.nix
Normal file
50
pkgs/os-specific/linux/gtkgreet/default.nix
Normal file
@ -0,0 +1,50 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromSourcehut
|
||||
, pkg-config
|
||||
, cmake
|
||||
, meson
|
||||
, ninja
|
||||
, gtk3
|
||||
, gtk-layer-shell
|
||||
, json_c
|
||||
, scdoc
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gtkgreet";
|
||||
version = "0.7";
|
||||
|
||||
src = fetchFromSourcehut {
|
||||
owner = "~kennylevinsen";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "ms+2FdtzzNlmlzNxFhu4cpX5H+5H+9ZOtZ0p8uVA3lo=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
meson
|
||||
ninja
|
||||
cmake
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
gtk3
|
||||
gtk-layer-shell
|
||||
json_c
|
||||
scdoc
|
||||
];
|
||||
|
||||
mesonFlags = [
|
||||
"-Dlayershell=enabled"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "GTK based greeter for greetd, to be run under cage or similar";
|
||||
homepage = "https://git.sr.ht/~kennylevinsen/gtkgreet";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ luc65r ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -22549,6 +22549,7 @@ in
|
||||
|
||||
greetd = recurseIntoAttrs {
|
||||
greetd = callPackage ../os-specific/linux/greetd { };
|
||||
gtkgreet = callPackage ../os-specific/linux/gtkgreet { };
|
||||
};
|
||||
|
||||
goldendict = libsForQt5.callPackage ../applications/misc/goldendict {
|
||||
|
Loading…
Reference in New Issue
Block a user