blob: fe52106ea530c37035cc37fcb5f17bd98f3f80ef (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
{ lib, python3, fetchFromGitHub, gtk3, gobject-introspection, gtk-layer-shell
, wrapGAppsHook }:
python3.pkgs.buildPythonApplication rec {
pname = "discover-overlay";
version = "0.7.3";
pyproject = true;
src = fetchFromGitHub {
owner = "trigg";
repo = "Discover";
rev = "refs/tags/v${version}";
hash = "sha256-a9IPNy5i088rltQ9LYD+DgJ/1/wckQ2E5Bzg62t95yU=";
};
buildInputs = [ gtk3 gtk-layer-shell ];
nativeBuildInputs = [
gobject-introspection
wrapGAppsHook
];
dontWrapGApps = true;
makeWrapperArgs = [ "\${gappsWrapperArgs[@]}" "--set DISPLAY ':0.0'" ];
propagatedBuildInputs = with python3.pkgs; [
pulsectl-asyncio
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;
};
}
|