nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 15 lines 314 B view raw
1{ ncVersion }: 2_: 3{ apps, callPackage, ... }: 4{ 5 6 apps = apps.extend ( 7 self: super: { 8 hmr_enabler = callPackage ./apps/hmr_enabler.nix { }; 9 10 memories = callPackage ./apps/memories.nix { inherit ncVersion; }; 11 12 recognize = callPackage ./apps/recognize.nix { inherit ncVersion; }; 13 } 14 ); 15}