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
45 lines
988 B
Nix
45 lines
988 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
testers,
|
|
git-stack,
|
|
stdenv,
|
|
zlib,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "git-stack";
|
|
version = "0.10.20";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gitext-rs";
|
|
repo = "git-stack";
|
|
rev = "v${version}";
|
|
hash = "sha256-PULWvJ1sfLbTVOICl/ENPG76tOw+98Whgtc9obO+W6w=";
|
|
};
|
|
|
|
cargoHash = "sha256-n+kU6OLwsAjUVc1LPZpcn54FJroU09LNWmrar2oNyXI=";
|
|
|
|
buildInputs =
|
|
[ ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
zlib
|
|
];
|
|
|
|
# Many tests try to access the file system.
|
|
doCheck = false;
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = git-stack;
|
|
};
|
|
|
|
meta = {
|
|
description = "Stacked branch management for Git";
|
|
homepage = "https://github.com/gitext-rs/git-stack";
|
|
changelog = "https://github.com/gitext-rs/git-stack/releases/tag/v${version}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ stehessel ];
|
|
mainProgram = "git-stack";
|
|
};
|
|
}
|