summaryrefslogtreecommitdiffstats
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorRyan Horiguchi <ryan.horiguchi@gmail.com>2021-01-08 10:31:21 +0100
committerRyan Horiguchi <ryan.horiguchi@gmail.com>2021-01-11 05:30:42 +0100
commit2c9a72d98eb92b68dabf3225e7b264cf7d77f84a (patch)
tree52a8287522872fe46cad580238998460eaf6539e /pkgs/desktops
parenta31ffc89e83b5dfe0e267fbb481823b4351f8ab5 (diff)
gnomeExtensions.unite-shell: init at 44
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/gnome-3/extensions/unite-shell/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/desktops/gnome-3/extensions/unite-shell/default.nix b/pkgs/desktops/gnome-3/extensions/unite-shell/default.nix
new file mode 100644
index 000000000000..add87c10f1ae
--- /dev/null
+++ b/pkgs/desktops/gnome-3/extensions/unite-shell/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, gnome3, fetchFromGitHub, xprop, glib, coreutils }:
+stdenv.mkDerivation rec {
+ pname = "gnome-shell-extension-unite-shell";
+ version = "44";
+
+ src = fetchFromGitHub {
+ owner = "hardpixel";
+ repo = "unite-shell";
+ rev = "v${version}";
+ sha256 = "0nqc1q2yz4xa3fdfx45w6da1wijmdwzhdrch0mqwblgbpjr4fs9g";
+ };
+
+ uuid = "unite@hardpixel.eu";
+
+ nativeBuildInputs = [ glib ];
+
+ buildInputs = [ xprop ];
+
+ buildPhase = ''
+ runHook preBuild
+ glib-compile-schemas --strict --targetdir=${uuid}/schemas/ ${uuid}/schemas
+ runHook postBuild
+ '';
+
+ installPhase = ''
+ runHook preInstall
+ mkdir -p $out/share/gnome-shell/extensions
+ cp -r ${uuid} $out/share/gnome-shell/extensions
+ runHook postInstall
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Unite is a GNOME Shell extension which makes a few layout tweaks to the top panel and removes window decorations to make it look like Ubuntu Unity Shell";
+ license = licenses.gpl3Only;
+ maintainers = with maintainers; [ rhoriguchi ];
+ homepage = "https://github.com/hardpixel/unite-shell";
+ broken = versionOlder gnome3.gnome-shell.version "3.32";
+ };
+}