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

discover-overlay: init at 0.7.0
This commit is contained in:
éclairevoyant 2024-04-13 18:47:30 +00:00 committed by GitHub
commit a083aec651
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 58 additions and 0 deletions

View file

@ -5301,6 +5301,12 @@
fingerprint = "D245 D484 F357 8CB1 7FD6 DA6B 67DB 29BF F3C9 6757"; fingerprint = "D245 D484 F357 8CB1 7FD6 DA6B 67DB 29BF F3C9 6757";
}]; }];
}; };
dragonginger = {
email = "dragonginger10@gmail.com";
github = "dragonginger10";
githubId = 20759788;
name = "JP Lippold";
};
dramaturg = { dramaturg = {
email = "seb@ds.ag"; email = "seb@ds.ag";
github = "dramaturg"; github = "dramaturg";

View file

@ -0,0 +1,52 @@
{ 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;
};
}