feat: windows-devshell

This commit is contained in:
2026-05-02 15:31:26 +00:00
parent c041f2e88d
commit 4378b13877
8 changed files with 356 additions and 1 deletions

View File

@@ -109,6 +109,9 @@
};
dbToolPkgs = pkgs.callPackage ./db-tool { inherit self; };
linuxDevShellPkgs = pkgs.callPackage ./linux-devshell {};
windowsDevShellPkgs = pkgs.callPackage ./windows-devshell {
inherit (linuxDevShellPkgs) linux-devshell-standalone;
};
in {
py3-datetime = pkgs.callPackage ./py3-datetime.nix {};
py3-marzban = pkgs.callPackage ./py3-marzban.nix { inherit self; };
@@ -149,6 +152,7 @@ in {
"hectic-inheritance" = dbToolPkgs."hectic-inheritance";
"linux-devshell" = linuxDevShellPkgs.linux-devshell;
"linux-devshell-standalone" = linuxDevShellPkgs.linux-devshell-standalone;
"windows-devshell-standalone" = windowsDevShellPkgs.windows-devshell-standalone;
nbt2json = pkgs.callPackage ./nbt2json {};
hemar-parser = pkgs.callPackage ./hemar/parser {};
AstroTuxLauncher = pkgs.callPackage ./AstroTuxLauncher.nix {};