diff options
Diffstat (limited to 'derivations/codex/flake.nix')
-rw-r--r-- | derivations/codex/flake.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/derivations/codex/flake.nix b/derivations/codex/flake.nix new file mode 100644 index 0000000..3a0a46f --- /dev/null +++ b/derivations/codex/flake.nix @@ -0,0 +1,19 @@ +{ + description = "Gemini CLI flake"; + + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + }; + + outputs = { + self, + nixpkgs, + }: let + system = "x86_64-linux"; + pkgs = nixpkgs.legacyPackages.${system}; + in { + packages.${system}.default = pkgs.callPackage ./default.nix { + inherit (pkgs) lib buildNpmPackage fetchFromGitHub fetchNpmDeps gitUpdater; + }; + }; +} |