fix the shell.nix

This commit is contained in:
stupidcomputer 2024-06-24 02:42:27 -05:00
parent f8ac92e0ae
commit 675d8e16e1
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.python311Packages; [ django pymupdf docker-compose ];
nativeBuildInputs = with pkgs.python311Packages; [ django pymupdf ] ++ [pkgs.docker-compose] ;
}