aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/desktops/gnome-3/extensions/material-shell/default.nix
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
committerMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
commitc4625b175f8200f643fd6e11010932ea44c78433 (patch)
treebce3f89888c8ac3991fa5569a878a9eab6801ccc /infra/libkookie/nixpkgs/pkgs/desktops/gnome-3/extensions/material-shell/default.nix
parent49f735974dd103039ddc4cb576bb76555164a9e7 (diff)
parentd661aa56a8843e991261510c1bb28fdc2f6975ae (diff)
Add 'infra/libkookie/' from commit 'd661aa56a8843e991261510c1bb28fdc2f6975ae'
git-subtree-dir: infra/libkookie git-subtree-mainline: 49f735974dd103039ddc4cb576bb76555164a9e7 git-subtree-split: d661aa56a8843e991261510c1bb28fdc2f6975ae
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/desktops/gnome-3/extensions/material-shell/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/desktops/gnome-3/extensions/material-shell/default.nix44
1 files changed, 44 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/desktops/gnome-3/extensions/material-shell/default.nix b/infra/libkookie/nixpkgs/pkgs/desktops/gnome-3/extensions/material-shell/default.nix
new file mode 100644
index 000000000000..36de0e0a66a0
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/desktops/gnome-3/extensions/material-shell/default.nix
@@ -0,0 +1,44 @@
+{ stdenv, lib, fetchFromGitHub, gnome3, fetchpatch }:
+
+stdenv.mkDerivation rec {
+ pname = "gnome-shell-extension-material-shell";
+ version = "7";
+
+ src = fetchFromGitHub {
+ owner = "material-shell";
+ repo = "material-shell";
+ rev = version;
+ sha256 = "076cv1l5qr5x71przjwvbzx0m91n4z0byc2gc3r48l8vsr2d0hwf";
+ };
+
+ patches = [
+ # Fix for https://github.com/material-shell/material-shell/issues/284
+ # (Remove this patch when updating to version >= 8)
+ (fetchpatch {
+ url = "https://github.com/material-shell/material-shell/commit/fc27489a1ec503a4a5c7cb2f4e1eefa84a7ea2f1.patch";
+ sha256 = "0x2skg955c4jqgwbkfhk7plm8bh1qnk66cdds796bzkp3hb5syw8";
+ })
+ ];
+
+ # This package has a Makefile, but it's used for building a zip for
+ # publication to extensions.gnome.org. Disable the build phase so
+ # installing doesn't build an unnecessary release.
+ dontBuild = true;
+
+ installPhase = ''
+ runHook preInstall
+ mkdir -p $out/share/gnome-shell/extensions/${uuid}
+ cp -r * $out/share/gnome-shell/extensions/${uuid}/
+ runHook postInstall
+ '';
+
+ uuid = "material-shell@papyelgringo";
+
+ meta = with stdenv.lib; {
+ description = "A modern desktop interface for Linux";
+ license = licenses.mit;
+ maintainers = with maintainers; [ benley ];
+ homepage = "https://github.com/material-shell/material-shell";
+ platforms = gnome3.gnome-shell.meta.platforms;
+ };
+}