Remove broken Bookwyrm and Python packages

This commit is contained in:
Reinout Meliesie 2026-04-28 18:40:09 +02:00
commit 75390937cd
Signed by: zedfrigg
GPG key ID: 3AFCC06481308BC6
8 changed files with 6 additions and 562 deletions

View file

@ -3,60 +3,17 @@
with pkgs ;
{
imports = [
packages/bookwyrm/nixos-module.nix
] ;
nixpkgs = {
overlays = [
( self : super : {
kernelmaft = {
bookwyrm = callPackage (
import packages/bookwyrm/package.nix
) {} ;
journalctl-last-invocation = callPackage (
import packages/journalctl-last-invocation/package.nix
) {} ;
journalctl-last-invocation = callPackage (
import packages/journalctl-last-invocation/package.nix
) {} ;
nix-store-fuzzy-find = callPackage (
import packages/nix-store-fuzzy-find/package.nix
) {} ;
python = {
bw-file-resubmit = callPackage (
import packages/python3.11-bw-file-resubmit/package.nix
) {} ;
django-imagekit = callPackage (
import packages/python3.11-django-imagekit/package.nix
) {} ;
django-pgtrigger = callPackage (
import packages/python3.11-django-pgtrigger/package.nix
) {} ;
django-sass-processor = callPackage (
import packages/python3.11-django-sass-processor/package.nix
) {} ;
s3-tar = callPackage (
import packages/python3.11-s3-tar/package.nix
) {} ;
} ;
} ;
# TODO: Use the following template once the custom Python packages have been converted to use `buildPythonPackage`
#
# python311 = super . python311 . override {
# packageOverrides = python-self : python-super : {
# package-name = super . callPackage ( import ./package-file.nix ) {} ;
# } ;
# } ;
nix-store-fuzzy-find = callPackage (
import packages/nix-store-fuzzy-find/package.nix
) {} ;
} )
] ;