3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/gnome-3/extensions/dash-to-dock/default.nix

27 lines
647 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, glib, gettext }:
stdenv.mkDerivation rec {
name = "gnome-shell-dash-to-dock-${version}";
version = "v57";
src = fetchFromGitHub {
owner = "micheleg";
repo = "dash-to-dock";
rev = "97f6a0bb95b9f87d7a34a074c9b3624b65111794";
sha256 = "0b9i89hpn9k63zcrbl4bhs7qfb70wh09870fwv2ik7hajm64kynn";
};
nativeBuildInputs = [
glib gettext
];
patches = [ ./fix-paths.patch ];
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/;
};
}