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
33 lines
729 B
Nix
33 lines
729 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3Packages,
|
|
git,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication {
|
|
pname = "git-bars";
|
|
version = "0-unstable-2023-08-08";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "knadh";
|
|
repo = "git-bars";
|
|
rev = "f15fbc15345d9ef021e5a9b278e352bb532dcee8";
|
|
hash = "sha256-jHP6LqhUQv6hh97tSXAdOruWdtp2FXM6ANlpWoA+fHQ=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
git
|
|
python3Packages.setuptools
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/knadh/git-bars";
|
|
description = "Utility for visualising git commit activity as bars on the terminal";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.matthiasbeyer ];
|
|
mainProgram = "git-bars";
|
|
};
|
|
}
|