27 lines
650 B
Nix
27 lines
650 B
Nix
{ stdenv, fetchFromGitHub, glib, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-shell-dash-to-panel";
|
|
version = "26";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "home-sweet-gnome";
|
|
repo = "dash-to-panel";
|
|
rev = "v${version}";
|
|
sha256 = "1phfx2pblygpcvsppsqqqflm7qnz46mqkw29hj0nv2dn69hf4xbc";
|
|
};
|
|
|
|
buildInputs = [
|
|
glib gettext
|
|
];
|
|
|
|
makeFlags = [ "INSTALLBASE=$(out)/share/gnome-shell/extensions" ];
|
|
|
|
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;
|
|
};
|
|
}
|