Add NixOS overlay containing all packages
This commit is contained in:
parent
c45884c66f
commit
432123bb09
1 changed files with 37 additions and 0 deletions
37
nixos-overlay.nix
Normal file
37
nixos-overlay.nix
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
{ pkgs , ... } :
|
||||||
|
|
||||||
|
{
|
||||||
|
nixpkgs = {
|
||||||
|
overlays = [
|
||||||
|
( self : super : with pkgs ; {
|
||||||
|
kernelmaft = {
|
||||||
|
|
||||||
|
python = {
|
||||||
|
|
||||||
|
bw-file-resubmit = callPackage (
|
||||||
|
import ./python3.11-bw-file-resubmit.nix
|
||||||
|
) {} ;
|
||||||
|
|
||||||
|
django-imagekit = callPackage (
|
||||||
|
import ./python3.11-django-imagekit.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
|
||||||
|
) {} ;
|
||||||
|
|
||||||
|
} ;
|
||||||
|
|
||||||
|
} ;
|
||||||
|
} )
|
||||||
|
] ;
|
||||||
|
} ;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue