From 6cb25387d26cbc6f6391df8e4b2f6711ce654e10 Mon Sep 17 00:00:00 2001 From: zzbaron Date: Sat, 4 Oct 2025 22:27:34 -0400 Subject: [PATCH 1/2] maintainers: add ZZBaron --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 1dcd16229876..7fc0ea3a59df 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -28829,6 +28829,12 @@ githubId = 71881325; name = "Stefan Bordei"; }; + ZZBaron = { + email = "zzbarona+nix@gmail.com"; + github = "ZZBaron"; + githubId = 157318434; + name = "ZZBaron"; + }; zzzsy = { email = "me@zzzsy.top"; github = "zzzsyyy"; From 19df1d9e775663371738f51e27d6317a4a941737 Mon Sep 17 00:00:00 2001 From: zzbaron Date: Sat, 4 Oct 2025 22:28:28 -0400 Subject: [PATCH 2/2] imgui-file-dialog: init at 0.6.8 --- pkgs/by-name/im/imgui-file-dialog/package.nix | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 pkgs/by-name/im/imgui-file-dialog/package.nix diff --git a/pkgs/by-name/im/imgui-file-dialog/package.nix b/pkgs/by-name/im/imgui-file-dialog/package.nix new file mode 100644 index 000000000000..9e0ad4f30025 --- /dev/null +++ b/pkgs/by-name/im/imgui-file-dialog/package.nix @@ -0,0 +1,43 @@ +{ + stdenv, + lib, + cmake, + fetchFromGitHub, + imgui, + nix-update-script, +}: + +stdenv.mkDerivation rec { + pname = "imgui-file-dialog"; + version = "0.6.8"; + + src = fetchFromGitHub { + owner = "aiekick"; + repo = "ImGuiFileDialog"; + tag = "v${version}"; + hash = "sha256-v5ROW4o4of3tUGMN/p/CNH1eWT+RNRlWvhI84HUMEGo="; + }; + + nativeBuildInputs = [ cmake ]; + + buildInputs = [ imgui ]; + + # Propagate imgui so users can find the headers (ImGuiFileDialog.h includes imgui.h) + propagatedBuildInputs = [ imgui ]; + + outputs = [ + "out" + "dev" + ]; + + passthru.updateScript = nix-update-script { }; + + meta = { + description = "Full featured file dialog for Dear ImGui"; + homepage = "https://github.com/aiekick/ImGuiFileDialog"; + changelog = "https://github.com/aiekick/ImGuiFileDialog/releases/tag/v${version}"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ZZBaron ]; + platforms = lib.platforms.all; + }; +}