Merge pull request #247982 from matthiasbeyer/add-git-bars

git-bars: init at 2023-08-08
This commit is contained in:
Matthias Beyer 2023-08-21 13:31:00 +02:00 committed by GitHub
commit 829d3c1162
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, lib, fetchFromGitHub, python3Packages, git }:
python3Packages.buildPythonApplication {
pname = "git-bars";
version = "unstable-2023-08-08";
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 = "A utility for visualising git commit activity as bars on the terminal";
license = licenses.mit;
maintainers = [ maintainers.matthiasbeyer ];
};
}

View file

@ -2182,6 +2182,8 @@ with pkgs;
git-big-picture = callPackage ../applications/version-management/git-big-picture { };
git-bars = callPackage ../applications/version-management/git-bars { };
git-branchless = callPackage ../applications/version-management/git-branchless {
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
};