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";
|
|
};
|
|
}
|