nixpkgs/pkgs/development/web/netlify-cli/default.nix
panda2134 2ff4e9ea84 netlify-cli: refactor
Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
2022-11-24 12:28:03 +00:00

17 lines
551 B
Nix

{ callPackage, fetchFromGitHub, lib, pkgs }:
let
nodePackages = import ./composition.nix { inherit pkgs; };
sourceInfo = (lib.importJSON ./netlify-cli.json);
in
nodePackages.package.override {
preRebuild = ''
export ESBUILD_BINARY_PATH="${pkgs.esbuild_netlify}/bin/esbuild"
'';
src = fetchFromGitHub {
inherit (sourceInfo) owner repo rev sha256;
};
bypassCache = true;
reconstructLock = true;
passthru.tests.test = callPackage ./test.nix { };
meta.maintainers = with lib.maintainers; [ roberth ];
}