{ stdenv, fetchFromGitHub, glib, gettext }: stdenv.mkDerivation rec { name = "gnome-shell-dash-to-dock-${version}"; version = "65"; src = fetchFromGitHub { owner = "micheleg"; repo = "dash-to-dock"; rev = "extensions.gnome.org-v" + version; sha256 = "0ln49l9s0yfl30pi77pz7xlmh63l9vjppi863kry5lay10dsvz47"; }; nativeBuildInputs = [ glib gettext ]; makeFlags = [ "INSTALLBASE=$(out)/share/gnome-shell/extensions" ]; meta = with stdenv.lib; { description = "A dock for the Gnome Shell"; license = licenses.gpl2; maintainers = with maintainers; [ eperuffo ]; homepage = https://micheleg.github.io/dash-to-dock/; }; }