From 074a6ffb981a7c97876dcb93e0d5c2113a9bd74c Mon Sep 17 00:00:00 2001 From: stuebinm Date: Sun, 11 Feb 2024 17:14:24 +0100 Subject: pkgs: init bookwyrm this is still missing: - a nice way to do settings - lots of testing (run the manage.py test script in a nixos test?) - an actual way to deploy this in a halfway reasonable way --- pkgs/overlay.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'pkgs/overlay.nix') diff --git a/pkgs/overlay.nix b/pkgs/overlay.nix index 671a7c2..6e654b3 100644 --- a/pkgs/overlay.nix +++ b/pkgs/overlay.nix @@ -134,6 +134,18 @@ in #### packaged mostly as shitpost / to play around with #### + bookwyrm = (self.callPackage ./bookwyrm.nix { + python = super.python311.override ({ + packageOverrides = self: super: { + django = super.django_3; + python-crontab = super.python-crontab.overridePythonAttrs (_: { doCheck = false; }); + django-sass-processor = self.callPackage ./python/django-sass-processor.nix {}; + django-imagekit = self.callPackage ./python/django-imagekit.nix {}; + bw-file-resubmit = self.callPackage ./python/bw-file-resubmit.nix {}; + }; + }); + }); + glitchtip = (self.callPackage ./glitchtip.nix { python = super.python310.override ({ packageOverrides = self: super: { -- cgit v1.2.3