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
51 lines
1.3 KiB
Nix
51 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildNpmPackage,
|
|
fetchurl,
|
|
git,
|
|
installShellFiles,
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "graphite-cli";
|
|
version = "1.7.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://registry.npmjs.org/@withgraphite/graphite-cli/-/graphite-cli-${version}.tgz";
|
|
hash = "sha256-RoFzv4edmX4j6vl5K70fK38uZiXwqcbIvCdNcvumnRE=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-OpX0FpOGtsVgIsIsEPSTkNQ6z2basOf0OTboSBcrdOI=";
|
|
|
|
postPatch = ''
|
|
ln -s ${./package-lock.json} package-lock.json
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
git
|
|
installShellFiles
|
|
];
|
|
|
|
dontNpmBuild = true;
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd gt \
|
|
--bash <($out/bin/gt completion) \
|
|
--fish <(GT_PAGER= $out/bin/gt fish) \
|
|
--zsh <(ZSH_NAME=zsh $out/bin/gt completion)
|
|
'';
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = {
|
|
changelog = "https://graphite.dev/docs/cli-changelog";
|
|
description = "CLI that makes creating stacked git changes fast & intuitive";
|
|
downloadPage = "https://www.npmjs.com/package/@withgraphite/graphite-cli";
|
|
homepage = "https://graphite.dev/docs/graphite-cli";
|
|
license = lib.licenses.unfree; # no license specified
|
|
mainProgram = "gt";
|
|
maintainers = with lib.maintainers; [ joshheinrichs-shopify ];
|
|
};
|
|
}
|