From 675d8e16e16610b6b4b6b2e553fe286aebac19fd Mon Sep 17 00:00:00 2001 From: stupidcomputer Date: Mon, 24 Jun 2024 02:42:27 -0500 Subject: [PATCH] fix the shell.nix --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index a5ee2e3..cdd1fff 100644 --- a/shell.nix +++ b/shell.nix @@ -1,4 +1,4 @@ { pkgs ? import {} }: pkgs.mkShell { - nativeBuildInputs = with pkgs.python311Packages; [ django pymupdf docker-compose ]; + nativeBuildInputs = with pkgs.python311Packages; [ django pymupdf ] ++ [pkgs.docker-compose] ; }