diff options
| author | Baitinq <[email protected]> | 2025-07-15 17:34:39 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-07-15 18:00:31 +0200 |
| commit | cc56ed42486c2636af50bae451825ad90cfd4b6c (patch) | |
| tree | 2307d6ced51f427405e4152b4ff1493e245a6b30 /flake.nix | |
| parent | Boostrap: Support generating LLVM IR file (diff) | |
| download | pry-lang-cc56ed42486c2636af50bae451825ad90cfd4b6c.tar.gz pry-lang-cc56ed42486c2636af50bae451825ad90cfd4b6c.tar.bz2 pry-lang-cc56ed42486c2636af50bae451825ad90cfd4b6c.zip | |
Finish bootstrapping :^)
Diffstat (limited to '')
| -rw-r--r-- | flake.nix | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/flake.nix b/flake.nix index 86ebe6d..d8306cd 100644 --- a/flake.nix +++ b/flake.nix @@ -1,16 +1,11 @@ { - description = "Interpreter flake"; + description = "Pry-lang flake"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; - zig.url = "github:mitchellh/zig-overlay"; - zls = { - url = "github:zigtools/zls"; - inputs.nixpkgs.follows = "nixpkgs"; - }; }; - outputs = { self, nixpkgs, zig, zls }: let + outputs = { self, nixpkgs }: let systems = ["x86_64-darwin" "aarch64-darwin" "x86_64-linux"]; createDevShell = system: let @@ -21,8 +16,6 @@ isDarwin = pkgs.stdenv.isDarwin; in pkgs.mkShell { buildInputs = with pkgs; [ - zig.packages."${system}".master - zls.packages."${system}".default ] ++ pkgs.lib.optional isDarwin llvmPackages_19.libllvm ++ pkgs.lib.optionals (!isDarwin) ([ |