From cc56ed42486c2636af50bae451825ad90cfd4b6c Mon Sep 17 00:00:00 2001 From: Baitinq Date: Tue, 15 Jul 2025 17:34:39 +0200 Subject: Finish bootstrapping :^) --- flake.nix | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'flake.nix') 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) ([ -- cgit 1.4.1