about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/gnome-3/extensions/disable-unredirect/default.nix
blob: 0a9145de3db35050548c48c1bdbc077d50d7b2cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "gnome-shell-extension-disable-unredirect";
  version = "unstable-2021-01-17";

  src = fetchFromGitHub {
    owner = "kazysmaster";
    repo = "gnome-shell-extension-disable-unredirect";
    rev = "2ecb2f489ea3316b77d04f03a0c885f322c67e79";
    sha256 = "1rjyrg8qya0asndxr7189a9npww0rcxk02wkxrxjy7fdp5m89p7y";
  };

  uuid = "unredirect@vaina.lt";

  installPhase = ''
    runHook preInstall

    mkdir -p $out/share/gnome-shell/extensions
    cp -R ${uuid} $out/share/gnome-shell/extensions/${uuid}

    runHook postInstall
  '';

  meta = with lib; {
    description = "Disables unredirect fullscreen windows in gnome-shell to avoid tearing";
    license = licenses.gpl3Only;
    homepage = "https://github.com/kazysmaster/gnome-shell-extension-disable-unredirect";
    maintainers = with maintainers; [ eduardosm ];
  };
}