mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
25 lines
722 B
Nix
25 lines
722 B
Nix
{ stdenv, fetchFromGitHub, glib, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-shell-extension-bottompanel";
|
|
version = "72d07b98276d48bd580ea731a0f49f46018d556d";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Thoma5";
|
|
repo = "gnome-shell-extension-bottompanel";
|
|
rev = version;
|
|
sha256 = "1hpp39cpfd5h7x3j1b3nfly7c98sj10xqnwcmsr3d4jxkwh2vsbl";
|
|
};
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/share/gnome-shell/extensions"
|
|
cp -r "$src" "$out/share/gnome-shell/extensions/bottompanel@tmoer93"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Move your GNOME 3 shell panel to the bottom";
|
|
homepage = https://github.com/Thoma5/gnome-shell-extension-bottompanel;
|
|
};
|
|
}
|