5bf370b226
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
35 lines
1.1 KiB
Nix
35 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitLab, glib, gnome, unzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-shell-extension-night-theme-switcher";
|
|
version = "53";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "rmnvgr";
|
|
repo = "nightthemeswitcher-gnome-shell-extension";
|
|
rev = version;
|
|
sha256 = "0dgnh1aj0y89jzfkpj8zs4gdbmyc1v8lbki2q30gld17ljv4l6lh";
|
|
};
|
|
|
|
nativeBuildInputs = [ unzip ];
|
|
buildInputs = [ glib gnome.gnome-shell ];
|
|
|
|
passthru = {
|
|
extensionUuid = "nightthemeswitcher@romainvigier.fr";
|
|
extensionPortalSlug = "night-theme-switcher";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/share/gnome-shell/extensions/
|
|
unzip "build/nightthemeswitcher@romainvigier.fr.shell-extension.zip" -d "$out/share/gnome-shell/extensions/nightthemeswitcher@romainvigier.fr"
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Automatically change the GTK theme to dark variant when Night Light activates";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ jonafato ];
|
|
homepage = "https://gitlab.com/rmnvgr/nightthemeswitcher-gnome-shell-extension/";
|
|
};
|
|
}
|