Fix import paths for NixOS modules
This commit is contained in:
parent
b836b76281
commit
5f8a222926
1 changed files with 6 additions and 6 deletions
|
@ -13,29 +13,29 @@ with pkgs ;
|
||||||
kernelmaft = {
|
kernelmaft = {
|
||||||
|
|
||||||
bookwyrm = callPackage (
|
bookwyrm = callPackage (
|
||||||
import ./bookwyrm.nix
|
import packages/bookwyrm/package.nix
|
||||||
) {} ;
|
) {} ;
|
||||||
|
|
||||||
python = {
|
python = {
|
||||||
|
|
||||||
bw-file-resubmit = callPackage (
|
bw-file-resubmit = callPackage (
|
||||||
import ./python3.11-bw-file-resubmit.nix
|
import packages/python3.11-bw-file-resubmit/package.nix
|
||||||
) {} ;
|
) {} ;
|
||||||
|
|
||||||
django-imagekit = callPackage (
|
django-imagekit = callPackage (
|
||||||
import ./python3.11-django-imagekit.nix
|
import packages/python3.11-django-imagekit/package.nix
|
||||||
) {} ;
|
) {} ;
|
||||||
|
|
||||||
django-pgtrigger = callPackage (
|
django-pgtrigger = callPackage (
|
||||||
import ./python3.11-django-pgtrigger.nix
|
import packages/python3.11-django-pgtrigger/package.nix
|
||||||
) {} ;
|
) {} ;
|
||||||
|
|
||||||
django-sass-processor = callPackage (
|
django-sass-processor = callPackage (
|
||||||
import ./python3.11-django-sass-processor.nix
|
import packages/python3.11-django-sass-processor/package.nix
|
||||||
) {} ;
|
) {} ;
|
||||||
|
|
||||||
s3-tar = callPackage (
|
s3-tar = callPackage (
|
||||||
import ./python3.11-s3-tar.nix
|
import packages/python3.11-s3-tar/package.nix
|
||||||
) {} ;
|
) {} ;
|
||||||
|
|
||||||
} ;
|
} ;
|
||||||
|
|
Loading…
Add table
Reference in a new issue