Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
pname = "replit_rtld_loader";
version = "1";
src = ./.;
buildInputs = [pkgs.python310];
buildInputs = [];
installPhase = ''
mkdir $out
mv rtld_loader.so $out/
Expand All @@ -21,7 +21,7 @@
packages.x86_64-linux.default = package;
devShells.x86_64-linux.default = pkgs.mkShell {
packages = with pkgs; [
python310
python314
gnumake
];
};
Expand Down
2 changes: 1 addition & 1 deletion replit.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{pkgs}: {
deps = [
pkgs.gdb
pkgs.python310Full
pkgs.python314
pkgs.clang
];
}
2 changes: 1 addition & 1 deletion scripts/ci_check.sh
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Loading