mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 18:44:07 +00:00
4b3942b75a
There's still no official release for gnome-3.34
28 lines
724 B
Nix
28 lines
724 B
Nix
{ stdenv, fetchFromGitHub, glib, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-shell-dash-to-dock";
|
|
version = "20190921";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "micheleg";
|
|
repo = "dash-to-dock";
|
|
# rev = "extensions.gnome.org-v" + version;
|
|
rev = "d918d29a6afced8823dc954a4317988b79aad6b8";
|
|
sha256 = "1wlmbcn8zs8xiyxhgdcbnf2igjsjg0bkcsvjpy8fk13fxshxsqx6";
|
|
};
|
|
|
|
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/;
|
|
};
|
|
}
|