8 lines
186 B
Nix
8 lines
186 B
Nix
let
|
|
pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/refs/tags/25.11.tar.gz") {};
|
|
in pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
openssl pkg-config sqlite
|
|
];
|
|
}
|