Skip to content

Commit 590bc3d

Browse files
committed
wip
1 parent 71a08fb commit 590bc3d

2 files changed

Lines changed: 50 additions & 0 deletions

File tree

flake.lock

Lines changed: 27 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
description = "The Replit RTLD Loader allows dynamically loaded shared libraries (.so) to work seamlessly in Repls";
3+
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
4+
5+
outputs = { self, nixpkgs, ... }:
6+
let pkgs = import nixpkgs {
7+
system = "x86_64-linux";
8+
};
9+
in
10+
{
11+
packages.x86_64-linux.default = pkgs.stdenv.mkDerivation {
12+
pname = "replit_rtld_loader";
13+
version = "1";
14+
src = ./.;
15+
};
16+
devShells.x86_64-linux.default = pkgs.mkShell {
17+
packages = with pkgs; [
18+
python310
19+
gnumake
20+
];
21+
};
22+
};
23+
}

0 commit comments

Comments
 (0)