bffbf4617a
Their keys are now not used directly. Instead, we go the standard route of mapping to the UUID in order to apply the rename procedure. This makes sure the manual override always does the correct thing, and also gives us more consistency overall.
42 lines
1 KiB
Nix
42 lines
1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-shell-extension-impatience";
|
|
version = "unstable-2019-09-23";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "timbertson";
|
|
repo = "gnome-shell-impatience";
|
|
rev = "43e4e0a1e0eeb334a2da5224ce3ab4fdddf4f1b2";
|
|
sha256 = "0kvdhlz41fjyqdgcfw6mrr9nali6wg2qwji3dvykzfi0aypljzpx";
|
|
};
|
|
|
|
buildInputs = [
|
|
glib
|
|
];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
make schemas
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/share/gnome-shell/extensions
|
|
cp -r impatience "$out/share/gnome-shell/extensions/impatience@gfxmonk.net"
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru = {
|
|
extensionUuid = "impatience@gfxmonk.net";
|
|
extensionPortalSlug = "impatience";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Speed up builtin gnome-shell animations";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ timbertson tiramiseb ];
|
|
homepage = "http://gfxmonk.net/dist/0install/gnome-shell-impatience.xml";
|
|
};
|
|
}
|