mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
gnome3.gnome-session-ctl: init at 3.38.0
This commit is contained in:
parent
bdbf926017
commit
00d2ae41c5
2 changed files with 43 additions and 0 deletions
41
pkgs/desktops/gnome-3/core/gnome-session/ctl.nix
Normal file
41
pkgs/desktops/gnome-3/core/gnome-session/ctl.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, meson
|
||||
, ninja
|
||||
, pkg-config
|
||||
, glib
|
||||
, systemd
|
||||
, wrapGAppsHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gnome-session-ctl";
|
||||
version = "3.38.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nix-community";
|
||||
repo = pname;
|
||||
rev = "c20907fea27fa96568b8375a6756c40d0bfb9e40"; # main
|
||||
hash = "sha256-y9/yOH6N8wf93+gPqnqzRzV/lPXYD0M6v7dsLFF8lWo=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
glib
|
||||
systemd
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "gnome-session-ctl extracted from gnome-session for nixpkgs";
|
||||
homepage = "https://github.com/nix-community/gnome-session-ctl";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = teams.gnome.members;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -79,6 +79,8 @@ lib.makeScope pkgs.newScope (self: with self; {
|
|||
|
||||
gnome-session = callPackage ./core/gnome-session { };
|
||||
|
||||
gnome-session-ctl = callPackage ./core/gnome-session/ctl.nix { };
|
||||
|
||||
gnome-shell = callPackage ./core/gnome-shell { };
|
||||
|
||||
gnome-shell-extensions = callPackage ./core/gnome-shell-extensions { };
|
||||
|
|
Loading…
Reference in a new issue