gnomeExtensions.dash-to-dock: switch to fork to make it work with GNOME 40

This commit is contained in:
Moritz Hedtke 2021-08-22 16:26:02 +02:00
parent a6a68eeb2d
commit 1f88a017f2
No known key found for this signature in database
GPG key ID: 6794D45A488C2EDE

View file

@ -2,22 +2,25 @@
, fetchFromGitHub , fetchFromGitHub
, glib , glib
, gettext , gettext
, sassc
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gnome-shell-extension-dash-to-dock"; pname = "gnome-shell-extension-dash-to-dock";
version = "69"; version = "unstable-2021-07-07";
# temporarily switched to https://github.com/micheleg/dash-to-dock/pull/1402 because upstream doesn't work with GNOME 40 yet.
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "micheleg"; owner = "ewlsh";
repo = "dash-to-dock"; repo = "dash-to-dock";
rev = "extensions.gnome.org-v" + version; rev = "e4beec847181e4163b0a99ceaef4c4582cc8ae4c";
hash = "sha256-YuLtC7E8dK57JSuFdbDQe5Ml+KQfl9qSdrHdVhFaNiE="; hash = "sha256-7UVnLXH7COnIbqxbt3CCscuu1YyPH6ax5DlKdaHCT/0=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
glib glib
gettext gettext
sassc
]; ];
makeFlags = [ makeFlags = [