mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 11:22:58 +00:00
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ buildNpmPackage
|
|
, fetchFromGitHub
|
|
, lib
|
|
, nix-update-script
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "gitlab-ci-local";
|
|
version = "4.52.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "firecow";
|
|
repo = "gitlab-ci-local";
|
|
rev = version;
|
|
hash = "sha256-yNOlcb1I8BiR9rbqxeE7PEshEAudw62M77QBgTCBETg=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-8Fxkd3JPyspcZeENpvvuguPNXbnWL1WrcYL9c77+Gok=";
|
|
|
|
postPatch = ''
|
|
# remove cleanup which runs git commands
|
|
substituteInPlace package.json \
|
|
--replace-fail "npm run cleanup" "true"
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib;{
|
|
description = "Run gitlab pipelines locally as shell executor or docker executor";
|
|
mainProgram = "gitlab-ci-local";
|
|
longDescription = ''
|
|
Tired of pushing to test your .gitlab-ci.yml?
|
|
Run gitlab pipelines locally as shell executor or docker executor.
|
|
Get rid of all those dev specific shell scripts and make files.
|
|
'';
|
|
homepage = "https://github.com/firecow/gitlab-ci-local";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ pineapplehunter ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|