File tree Expand file tree Collapse file tree 1 file changed +7
-10
lines changed
Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Original file line number Diff line number Diff line change 22 description = "NodeJS 16_x project" ;
33
44 inputs = {
5- # Specify the source of Home Manager and Nixpkgs.
6- branch-nix . url = "git+ssh://[email protected] /BranchMetrics/nix " ; 5+ nixpkgs . url = "github:NixOS/nixpkgs/nixos-24.05" ;
6+ utils . url = "github:numtide/flake-utils " ;
77 } ;
88
9- outputs = { self , branch-nix } :
9+ outputs = { self } :
1010 let
11- nixpkgs = branch-nix . nixpkgs ;
12- nixpkgs-unstable = branch-nix . nixpkgs-unstable ;
13- extra-pkgs = branch-nix . packages ;
14- utils = branch-nix . utils ;
15- system-utils = branch-nix . system-utils ;
11+ nixpkgs = nixpkgs ;
12+ extra-pkgs = packages ;
13+ utils = utils ;
14+ system-utils = system-utils ;
1615 in
1716 utils . lib . eachDefaultSystem ( system :
1817 let
1918 stable-pkgs = nixpkgs . legacyPackages . ${ system } ;
20- unstable-pkgs = nixpkgs . legacyPackages . ${ system } ;
2119 pkgs = stable-pkgs // {
2220 extra-pkgs = extra-pkgs . ${ system } ;
23- unstable = unstable-pkgs ;
2421 } ;
2522 bazel-os = system-utils . getBazelOs system ;
2623 nodejs = pkgs . extra-pkgs . nodejs-16_x ;
You can’t perform that action at this time.
0 commit comments