add discover

This commit is contained in:
LavaDesu 2021-07-18 14:10:58 +07:00
parent f83b5bd0f9
commit 0e608a0fdf
Signed by: cilly
GPG key ID: 6500251E087653C9
4 changed files with 49 additions and 1 deletions

View file

@ -0,0 +1,26 @@
{ inputs
, python3Packages
, gtk3
, gobject-introspection
, wrapGAppsHook
, ...
}:
python3Packages.buildPythonApplication {
pname = "discover-overlay";
version = "1.0";
src = inputs.discover;
nativeBuildInputs = [
wrapGAppsHook
];
propagatedBuildInputs = with python3Packages; [
gtk3
gobject-introspection
pygobject3
websocket-client
pyxdg
requests
python-pidfile
pillow
];
}