Add Bookwyrm to overlay
This commit is contained in:
parent
539597bab8
commit
e2ef3b849d
1 changed files with 39 additions and 31 deletions
|
@ -3,44 +3,52 @@
|
||||||
{
|
{
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
overlays = [
|
overlays = [
|
||||||
( self : super : with pkgs ; {
|
( self : super :
|
||||||
kernelmaft = {
|
with pkgs ;
|
||||||
|
|
||||||
python = {
|
{
|
||||||
|
kernelmaft = {
|
||||||
|
|
||||||
bw-file-resubmit = callPackage (
|
bookwyrm = callPackage (
|
||||||
import ./python3.11-bw-file-resubmit.nix
|
import ./bookwyrm.nix
|
||||||
) {} ;
|
|
||||||
|
|
||||||
django-imagekit = callPackage (
|
|
||||||
import ./python3.11-django-imagekit.nix
|
|
||||||
) {} ;
|
) {} ;
|
||||||
|
|
||||||
django-pgtrigger = callPackage (
|
python = {
|
||||||
import ./python3.11-django-pgtrigger.nix
|
|
||||||
) {} ;
|
bw-file-resubmit = callPackage (
|
||||||
|
import ./python3.11-bw-file-resubmit.nix
|
||||||
django-sass-processor = callPackage (
|
) {} ;
|
||||||
import ./python3.11-django-sass-processor.nix
|
|
||||||
) {} ;
|
django-imagekit = callPackage (
|
||||||
|
import ./python3.11-django-imagekit.nix
|
||||||
s3-tar = callPackage (
|
) {} ;
|
||||||
import ./python3.11-s3-tar.nix
|
|
||||||
) {} ;
|
django-pgtrigger = callPackage (
|
||||||
|
import ./python3.11-django-pgtrigger.nix
|
||||||
|
) {} ;
|
||||||
|
|
||||||
|
django-sass-processor = callPackage (
|
||||||
|
import ./python3.11-django-sass-processor.nix
|
||||||
|
) {} ;
|
||||||
|
|
||||||
|
s3-tar = callPackage (
|
||||||
|
import ./python3.11-s3-tar.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 ) {} ;
|
||||||
|
# } ;
|
||||||
|
# } ;
|
||||||
|
|
||||||
# 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 ) {} ;
|
|
||||||
# } ;
|
|
||||||
# } ;
|
|
||||||
|
|
||||||
} )
|
|
||||||
] ;
|
] ;
|
||||||
} ;
|
} ;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue