Files
nixpkgs/pkgs/by-name/ga/gauge/plugins/js/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

44 lines
1013 B
Nix

{
lib,
nodejs,
buildNpmPackage,
fetchFromGitHub,
unzip,
gauge-unwrapped,
}:
buildNpmPackage rec {
pname = "gauge-plugin-js";
version = "5.0.1";
src = fetchFromGitHub {
owner = "getgauge";
repo = "gauge-js";
rev = "v${version}";
hash = "sha256-eFXWed/2NQphSPuGIdnpq77ZiYPEGx5bS7g5LAZhkME=";
fetchSubmodules = true;
};
npmDepsHash = "sha256-LUwnue1kFxtifRrV8U+IQ74A2/ari75MVyZT0xLaez4=";
npmBuildScript = "package";
buildInputs = [ nodejs ];
nativeBuildInputs = [ unzip ];
postPatch = ''
patchShebangs index.js
'';
installPhase = ''
mkdir -p $out/share/gauge-plugins/js/${version}
unzip deploy/gauge-js-${version}.zip -d $out/share/gauge-plugins/js/${version}
'';
meta = {
description = "Gauge plugin that lets you write tests in JavaScript";
homepage = "https://github.com/getgauge/gauge-js/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ marie ];
inherit (gauge-unwrapped.meta) platforms;
};
}