diff --git a/.envrc b/.envrc new file mode 100644 index 00000000000..3550a30f2de --- /dev/null +++ b/.envrc @@ -0,0 +1 @@ +use flake diff --git a/.gitignore b/.gitignore index 90e5d79bb08..b12c598ac05 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,6 @@ next-env.d.ts # test subset config packages/test-harness/testSubsetGrep.properties + +# nix +.direnv/ diff --git a/flake.lock b/flake.lock new file mode 100644 index 00000000000..a1271a0ba5f --- /dev/null +++ b/flake.lock @@ -0,0 +1,27 @@ +{ + "nodes": { + "nixpkgs": { + "locked": { + "lastModified": 1709675310, + "narHash": "sha256-w61tqFEmuJ+/1rAwU7nkYZ+dN6sLwyobfLwX2Yn42FE=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "43d259f8d726113fac056e8bb17d5ac2dea3e0a8", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "nixpkgs": "nixpkgs" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 00000000000..0aa3d432a16 --- /dev/null +++ b/flake.nix @@ -0,0 +1,57 @@ +{ + description = "A Nix-flake-based development environment for Cursorless"; + + inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; + + outputs = + { self, nixpkgs }: + let + supportedSystems = [ + "x86_64-linux" + "aarch64-linux" + "x86_64-darwin" + "aarch64-darwin" + ]; + forEachSupportedSystem = + f: nixpkgs.lib.genAttrs supportedSystems (system: f { pkgs = import nixpkgs { inherit system; }; }); + pythonVersion = builtins.replaceStrings [ "py" ] [ + "python" + ] (nixpkgs.lib.importTOML ./pyproject.toml).tool.ruff.target-version; + in + { + devShells = forEachSupportedSystem ( + { pkgs }: + { + default = pkgs.mkShell { + packages = + let + python = pkgs.${pythonVersion}; + pythonPackages = pkgs."${pythonVersion}Packages"; + in + # neovim-wrapper = + [ + pkgs.corepack + pkgs.vsce + # https://github.com/NixOS/nixpkgs/pull/251418 + (pkgs.pre-commit.overrideAttrs (previousAttrs: { + makeWrapperArgs = '' + --set PYTHONPATH $PYTHONPATH + ''; + })) + + python + ]; + # To prevent weird broken non-interactive bash terminal + buildInputs = [ pkgs.bashInteractive ]; + shellHook = '' + if [ ! -f .git/hooks/pre-commit ]; then + pre-commit install + fi + + pnpm install + ''; + }; + } + ); + }; +}