mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 19:45:54 +00:00
32 lines
781 B
Nix
32 lines
781 B
Nix
{ lib, stdenv, fetchFromGitHub, glib, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-shell-extension-dash-to-panel";
|
|
version = "45";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "home-sweet-gnome";
|
|
repo = "dash-to-panel";
|
|
rev = "v${version}";
|
|
sha256 = "05bfd3b1g9zd86pl1rpgfqsmip271lasyfj8phpqf1gdds5yz6f6";
|
|
};
|
|
|
|
buildInputs = [
|
|
glib gettext
|
|
];
|
|
|
|
makeFlags = [ "INSTALLBASE=$(out)/share/gnome-shell/extensions" ];
|
|
|
|
passthru = {
|
|
extensionUuid = "dash-to-panel@jderose9.github.com";
|
|
extensionPortalSlug = "dash-to-panel";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "An icon taskbar for Gnome Shell";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ mounium ];
|
|
homepage = "https://github.com/jderose9/dash-to-panel";
|
|
};
|
|
}
|