eb12149979
Some already have it, this adds it to the rest. With all extensions having an 'uuid' attr we can do cool things like declaratively enable extensions on NixOS.
29 lines
691 B
Nix
29 lines
691 B
Nix
{ stdenv, fetchFromGitHub, glib, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-shell-dash-to-panel";
|
|
version = "31";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "home-sweet-gnome";
|
|
repo = "dash-to-panel";
|
|
rev = "v${version}";
|
|
sha256 = "A8Ft+tLNv8KlTnVUzrWGavBWpP0u2rhkuG5LZls1A24=";
|
|
};
|
|
|
|
buildInputs = [
|
|
glib gettext
|
|
];
|
|
|
|
makeFlags = [ "INSTALLBASE=$(out)/share/gnome-shell/extensions" ];
|
|
|
|
uuid = "dash-to-panel@jderose9.github.com";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An icon taskbar for Gnome Shell";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ mounium ];
|
|
homepage = "https://github.com/jderose9/dash-to-panel";
|
|
};
|
|
}
|