proarbeit/shell.nix

6 lines
110 B
Nix
Raw Normal View History

2020-07-27 16:32:39 +02:00
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
2020-07-28 12:42:19 +02:00
mkShell { buildInputs = [ python38 python38Packages.pynput ]; }