nixpkgs/pkgs/desktops/gnome-3/extensions/dash-to-panel/default.nix

27 lines
644 B
Nix
Raw Normal View History

2017-12-29 17:20:39 +00:00
{ stdenv, fetchFromGitHub, glib, gettext }:
stdenv.mkDerivation rec {
pname = "gnome-shell-dash-to-panel";
version = "31";
2017-12-29 17:20:39 +00:00
src = fetchFromGitHub {
owner = "home-sweet-gnome";
2017-12-29 17:20:39 +00:00
repo = "dash-to-panel";
rev = "v${version}";
sha256 = "A8Ft+tLNv8KlTnVUzrWGavBWpP0u2rhkuG5LZls1A24=";
2017-12-29 17:20:39 +00:00
};
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";
2017-12-29 17:20:39 +00:00
};
}