Skip to content

Commit

Permalink
run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
elohmeier committed Oct 29, 2024
1 parent 3490e83 commit 55db050
Show file tree
Hide file tree
Showing 4 changed files with 551 additions and 350 deletions.
25 changes: 21 additions & 4 deletions packages/node-packages/composition.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,34 @@
# This file has been generated by node2nix 1.11.1. Do not edit!

{pkgs ? import <nixpkgs> {
{
pkgs ? import <nixpkgs> {
inherit system;
}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs_18"}:
},
system ? builtins.currentSystem,
nodejs ? pkgs."nodejs_18",
}:

let
nodeEnv = import ./node-env.nix {
inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript;
inherit (pkgs)
stdenv
lib
python2
runCommand
writeTextFile
writeShellScript
;
inherit pkgs nodejs;
libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
};
in
import ./node-packages.nix {
inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit;
inherit (pkgs)
fetchurl
nix-gitignore
stdenv
lib
fetchgit
;
inherit nodeEnv;
}
Loading

0 comments on commit 55db050

Please sign in to comment.