init
This commit is contained in:
56
derivation.nix
Normal file
56
derivation.nix
Normal file
@@ -0,0 +1,56 @@
|
||||
{
|
||||
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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user