New main branch for flutter/flet rewrite

This commit is contained in:
2024-11-05 17:52:40 +00:00
parent a3dc6a8a73
commit ba0d94222b
14 changed files with 3488 additions and 129 deletions

50
devenv.nix Normal file
View File

@@ -0,0 +1,50 @@
{
pkgs,
lib,
config,
inputs,
...
}: let
pkgs-unstable = import inputs.nixpkgs-unstable {system = pkgs.stdenv.system;};
in {
packages = with pkgs; [
at-spi2-core
cairo
fontconfig
git
gdk-pixbuf
glib
gnome.zenity
gtk3
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
harfbuzz
libepoxy
pango
];
env.NIX_LD_LIBRARY_PATH = lib.makeLibraryPath (with pkgs; [
at-spi2-core
cairo
fontconfig
gdk-pixbuf
glib
gtk3
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
harfbuzz
libepoxy
pango
]);
env.NIX_LD = lib.fileContents "${pkgs.stdenv.cc}/nix-support/dynamic-linker";
languages = {
python = {
version = "3.12";
enable = true;
poetry = {
enable = true;
};
};
};
}