overlay/test.nix

12 lines
256 B
Nix
Raw Normal View History

2023-10-04 21:08:14 +00:00
{ pkgs ? import <nixpkgs> { overlays = [ (import ./default.nix) ]; } }:
2024-12-28 15:47:31 +00:00
let
2024-05-15 13:43:06 +00:00
# mypython = pkgs.python3.withPackages (python-pkgs: [
2024-12-28 15:47:31 +00:00
# python-pkgs.dilithium
2024-05-15 13:43:06 +00:00
# ]);
2024-12-28 15:47:31 +00:00
in
2023-10-04 21:08:14 +00:00
pkgs.mkShell {
buildInputs = with pkgs; [
2024-12-28 15:47:31 +00:00
intel-compute-runtime-legacy
2023-10-04 21:08:14 +00:00
];
}