Create default.nix

This commit is contained in:
CxJuice 2023-11-29 11:53:26 +08:00 committed by GitHub
parent d3cd78ee6c
commit 0aa8267cf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

5
default.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [ pkgs.python38 ];
}