diff --git a/flake.nix b/flake.nix index a928897..d437d2e 100644 --- a/flake.nix +++ b/flake.nix @@ -10,7 +10,7 @@ pname = "replit_rtld_loader"; version = "1"; src = ./.; - buildInputs = [pkgs.python310]; + buildInputs = []; installPhase = '' mkdir $out mv rtld_loader.so $out/ @@ -21,7 +21,7 @@ packages.x86_64-linux.default = package; devShells.x86_64-linux.default = pkgs.mkShell { packages = with pkgs; [ - python310 + python314 gnumake ]; }; diff --git a/replit.nix b/replit.nix index 842bc14..26b6844 100644 --- a/replit.nix +++ b/replit.nix @@ -2,7 +2,7 @@ {pkgs}: { deps = [ pkgs.gdb - pkgs.python310Full + pkgs.python314 pkgs.clang ]; } \ No newline at end of file diff --git a/scripts/ci_check.sh b/scripts/ci_check.sh index 5a3dcc1..6c27689 100755 --- a/scripts/ci_check.sh +++ b/scripts/ci_check.sh @@ -1,5 +1,5 @@ #! /usr/bin/env nix-shell -#! nix-shell -i bash -p clang python310Full gnumake +#! nix-shell -i bash -p clang python314 gnumake set -e