58f8944c92
GitOrigin-RevId: 5aba0fe9766a7201a336249fd6cb76e0d7ba2faf
31 lines
965 B
Nix
31 lines
965 B
Nix
{ stdenv, fetchFromGitLab, glib, gnome3, unzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-shell-extension-night-theme-switcher";
|
|
version = "36";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "rmnvgr";
|
|
repo = "nightthemeswitcher-gnome-shell-extension";
|
|
rev = "v${version}";
|
|
sha256 = "1c88979qprwb5lj0v7va017w7rdr89a648anhw4k5q135jwyskpz";
|
|
};
|
|
|
|
buildInputs = [ glib gnome3.gnome-shell unzip ];
|
|
|
|
uuid = "nightthemeswitcher@romainvigier.fr";
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/share/gnome-shell/extensions/
|
|
unzip build/${uuid}.shell-extension.zip -d $out/share/gnome-shell/extensions/${uuid}
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Automatically change the GTK theme to dark variant when Night Light activates";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ jonafato ];
|
|
homepage = "https://gitlab.com/rmnvgr/nightthemeswitcher-gnome-shell-extension/";
|
|
};
|
|
}
|