mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
impatience gnome-shell extension: init
This commit is contained in:
parent
a12be841d6
commit
08125c4a5f
34
pkgs/desktops/gnome-3/extensions/impatience.nix
Normal file
34
pkgs/desktops/gnome-3/extensions/impatience.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user