clan-infra/pkgs/renovate/composition.nix

33 lines
589 B
Nix
Raw Normal View History

2023-07-14 13:37:07 +00:00
# This file has been generated by node2nix 1.11.1. Do not edit!
2024-06-06 15:52:20 +00:00
{
pkgs ? import <nixpkgs> { inherit system; },
system ? builtins.currentSystem,
nodejs ? pkgs."nodejs_18",
}:
2023-07-14 13:37:07 +00:00
let
nodeEnv = import ./node-env.nix {
2024-06-06 15:52:20 +00:00
inherit (pkgs)
stdenv
lib
python2
runCommand
writeTextFile
writeShellScript
;
2023-07-14 13:37:07 +00:00
inherit pkgs nodejs;
libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
};
in
import ./node-packages.nix {
2024-06-06 15:52:20 +00:00
inherit (pkgs)
fetchurl
nix-gitignore
stdenv
lib
fetchgit
;
2023-07-14 13:37:07 +00:00
inherit nodeEnv;
}