Merge pull request #247982 from matthiasbeyer/add-git-bars
git-bars: init at 2023-08-08
This commit is contained in:
commit
829d3c1162
2 changed files with 27 additions and 0 deletions
25
pkgs/applications/version-management/git-bars/default.nix
Normal file
25
pkgs/applications/version-management/git-bars/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue