From ce6a5c74773de24b0d2fe0f9758409d5e888fc78 Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg" Date: Thu, 23 Apr 2026 17:21:10 +0200 Subject: [PATCH] Delete shell.nix --- shell.nix | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 shell.nix diff --git a/shell.nix b/shell.nix deleted file mode 100644 index bb5932f..0000000 --- a/shell.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ pkgs ? import { } }: let - my-python = pkgs.python312; - python-with-my-packages = my-python.withPackages (p: with p; [ - ical - ics - caldav - pyyaml - psycopg2 - ]); -in pkgs.mkShell { - buildInputs = [ python-with-my-packages ]; -}