1
0
mirror of git://jb55.com/damus synced 2024-09-18 19:23:49 +00:00
damus/shell.nix
William Casarin ae68d8a7e3 Add nix shell for dev stuff
Signed-off-by: William Casarin <jb55@jb55.com>
2022-06-18 08:50:02 -07:00

6 lines
112 B
Nix

{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
buildInputs = with python3Packages; [ Mako requests ];
}