fabric-makussu/derivation.nix
2025-05-01 14:09:14 +02:00

57 lines
923 B
Nix

{
lib,
python3Packages,
gtk3,
gtk-layer-shell,
cairo,
gobject-introspection,
libdbusmenu-gtk3,
gdk-pixbuf,
gnome,
cinnamon,
wrapGAppsHook3,
...
}:
python3Packages.buildPythonApplication {
pname = "fabric-nix-example";
version = "0.0.1";
pyproject = true;
src = ./.;
nativeBuildInputs = [
wrapGAppsHook3
gtk3
gobject-introspection
cairo
];
# buildInputs = [
# libdbusmenu-gtk3
# gtk-layer-shell
# gnome.gnome-bluetooth
# cinnamon.cinnamon-desktop
# gdk-pixbuf
# ];
dependencies = with python3Packages; [
python-fabric
pywayland
];
doCheck = false;
dontWrapGApps = true;
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
meta = {
changelog = "";
description = ''
Fabrix Bar Example
'';
homepage = "https://github.com/wholikeel/fabric";
license = lib.licenses.agpl3Only;
};
}