nix-gl-host/shell.nix

10 lines
162 B
Nix
Raw Permalink Normal View History

2022-11-22 10:23:20 +01:00
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
nativeBuildInputs = [
pkgs.nixpkgs-fmt
pkgs.python3Packages.black
pkgs.python3Packages.mypy
];
}