bffbf4617a
Their keys are now not used directly. Instead, we go the standard route of mapping to the UUID in order to apply the rename procedure. This makes sure the manual override always does the correct thing, and also gives us more consistency overall.
38 lines
820 B
Nix
38 lines
820 B
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, glib
|
|
, gettext
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-shell-extension-dash-to-dock";
|
|
version = "69";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "micheleg";
|
|
repo = "dash-to-dock";
|
|
rev = "extensions.gnome.org-v" + version;
|
|
hash = "sha256-YuLtC7E8dK57JSuFdbDQe5Ml+KQfl9qSdrHdVhFaNiE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
glib
|
|
gettext
|
|
];
|
|
|
|
makeFlags = [
|
|
"INSTALLBASE=${placeholder "out"}/share/gnome-shell/extensions"
|
|
];
|
|
|
|
passthru = {
|
|
extensionUuid = "dash-to-dock@micxgx.gmail.com";
|
|
extensionPortalSlug = "dash-to-dock";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A dock for the Gnome Shell";
|
|
homepage = "https://micheleg.github.io/dash-to-dock/";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ eperuffo jtojnar ];
|
|
};
|
|
}
|