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
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fetchYarnDeps,
|
|
yarnConfigHook,
|
|
yarnInstallHook,
|
|
nodejs,
|
|
testers,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "codefresh";
|
|
version = "0.89.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "codefresh-io";
|
|
repo = "cli";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-Cf3I+w0rVsjsu+m+vE/pOcASYTmsRi0yAQVpJkYbzUU=";
|
|
};
|
|
|
|
offlineCache = fetchYarnDeps {
|
|
yarnLock = "${finalAttrs.src}/yarn.lock";
|
|
hash = "sha256-wD3BmWjrFGkNqUhbo2TrWLwgo2o2MiQn7X3fyDYt5dw=";
|
|
};
|
|
nativeBuildInputs = [
|
|
yarnConfigHook
|
|
yarnInstallHook
|
|
nodejs
|
|
];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = finalAttrs.finalPackage;
|
|
# codefresh needs to read a config file, this is faked out with a subshell
|
|
command = "codefresh --cfconfig <(echo 'contexts:') version";
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://github.com/codefresh-io/cli/releases/tag/v${finalAttrs.version}";
|
|
description = "CLI tool to interact with Codefresh services";
|
|
homepage = "https://github.com/codefresh-io/cli";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "codefresh";
|
|
maintainers = [ lib.maintainers.takac ];
|
|
};
|
|
})
|