overlay/test.nix
2025-07-30 16:22:45 +02:00

11 lines
235 B
Nix

{ pkgs ? import <nixpkgs> { overlays = [ (import ./default.nix) ]; } }:
let
# mypython = pkgs.python3.withPackages (python-pkgs: [
# python-pkgs.dilithium
# ]);
in
pkgs.mkShell {
buildInputs = with pkgs; [
porecry
];
}