impatience gnome-shell extension: init

This commit is contained in:
Aneesh Agrawal 2016-04-13 23:09:15 -04:00
parent a12be841d6
commit 08125c4a5f
2 changed files with 39 additions and 1 deletions

View file

@ -0,0 +1,34 @@
{ stdenv, fetchFromGitHub, glib }:
stdenv.mkDerivation rec {
name = "gnome-shell-impatience-${version}";
version = "6564c21e4caf4a6bc5fe2bf21116d7c15408d494";
src = fetchFromGitHub {
owner = "timbertson";
repo = "gnome-shell-impatience";
rev = version;
sha256 = "10zyj42i07dcvaciv47qgkcs5g5n2bpc8a0m6fsimfi0442iwlcn";
};
buildInputs = [
glib
];
buildPhase = ''
make schemas
'';
installPhase = ''
cp -r impatience $out
'';
uuid = "impatience@gfxmonk.net";
meta = with stdenv.lib; {
description = "Speed up builtin gnome-shell animations";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ aneeshusa timbertson ];
homepage = http://gfxmonk.net/dist/0install/gnome-shell-impatience.xml;
};
}

View file

@ -15172,7 +15172,11 @@ in
gnome3_18 = recurseIntoAttrs (callPackage ../desktops/gnome-3/3.18 { });
gnome3 = self.gnome3_18;
gnome3 = self.gnome3_18 // {
shellExtensions = {
impatience = callPackage ../desktops/gnome-3/extensions/impatience.nix {};
};
};
gnome = recurseIntoAttrs self.gnome2;