Unverified Commit a083aec6 authored by éclairevoyant's avatar éclairevoyant Committed by GitHub
Browse files

Merge pull request #295938 from dragonginger10/discover-overlay-0.7.0

discover-overlay: init at 0.7.0
parents 44f5a5f3 21c9e665
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -5301,6 +5301,12 @@
      fingerprint = "D245 D484 F357 8CB1 7FD6  DA6B 67DB 29BF F3C9 6757";
    }];
  };
  dragonginger = {
    email = "dragonginger10@gmail.com";
    github = "dragonginger10";
    githubId = 20759788;
    name = "JP Lippold";
  };
  dramaturg = {
    email = "seb@ds.ag";
    github = "dramaturg";
+52 −0
Original line number Diff line number Diff line
{ lib, python3, fetchFromGitHub, gtk3, gobject-introspection, gtk-layer-shell, wrapGAppsHook }:
python3.pkgs.buildPythonApplication rec {
  pname = "discover-overlay";
  version = "0.7.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "trigg";
    repo = "Discover";
    rev = "refs/tags/v${version}";
    hash = "sha256-//QW6N87Uhm2aH0RSuykHG3+EfzYSHOcSNLSn1y0rFw=";
  };

  buildInputs = [
    gtk3
    gtk-layer-shell
  ];

  nativeBuildInputs = with python3.pkgs; [
    gobject-introspection
    wrapGAppsHook
  ];

  dontWrapGApps = true;

  makeWrapperArgs = [ "\${gappsWrapperArgs[@]}" "--set DISPLAY ':0.0'" ];

  propagatedBuildInputs = with python3.pkgs; [
    pycairo
    pygobject3
    websocket-client
    pyxdg
    requests
    pillow
    setuptools
    xlib
  ];
  postPatch = ''
    substituteInPlace discover_overlay/image_getter.py \
      --replace-fail /usr $out
  '';
  doCheck = false;

  meta = {
    description = "Yet another discord overlay for linux";
    homepage = "https://github.com/trigg/Discover";
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ dragonginger ];
    mainProgram = "discover-overlay";
    platforms = lib.platforms.linux;
  };
}