mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
material-shell: 7 -> 8 (#101427)
And removed the patch that is now included in release 8.
This commit is contained in:
parent
f0af7d27b8
commit
579daedfca
|
@ -1,25 +1,16 @@
|
|||
{ stdenv, lib, fetchFromGitHub, gnome3, fetchpatch }:
|
||||
{ stdenv, lib, fetchFromGitHub, gnome3 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gnome-shell-extension-material-shell";
|
||||
version = "7";
|
||||
version = "8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "material-shell";
|
||||
repo = "material-shell";
|
||||
rev = version;
|
||||
sha256 = "076cv1l5qr5x71przjwvbzx0m91n4z0byc2gc3r48l8vsr2d0hwf";
|
||||
sha256 = "08zc6xl2b7k7l5l6afr40ii3gnxxbysan3cqv2s9g614rbsmc62r";
|
||||
};
|
||||
|
||||
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.
|
||||
|
|
Loading…
Reference in a new issue