git-bars: init at 2023-08-08

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>

+27
+25
pkgs/applications/version-management/git-bars/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub, python3Packages, git }: 2 + 3 + python3Packages.buildPythonApplication { 4 + pname = "git-bars"; 5 + version = "unstable-2023-08-08"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "knadh"; 9 + repo = "git-bars"; 10 + rev = "f15fbc15345d9ef021e5a9b278e352bb532dcee8"; 11 + hash = "sha256-jHP6LqhUQv6hh97tSXAdOruWdtp2FXM6ANlpWoA+fHQ="; 12 + }; 13 + 14 + propagatedBuildInputs = [ 15 + git 16 + python3Packages.setuptools 17 + ]; 18 + 19 + meta = with lib; { 20 + homepage = "https://github.com/knadh/git-bars"; 21 + description = "A utility for visualising git commit activity as bars on the terminal"; 22 + license = licenses.mit; 23 + maintainers = [ maintainers.matthiasbeyer ]; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 2174 2174 2175 2175 git-big-picture = callPackage ../applications/version-management/git-big-picture { }; 2176 2176 2177 + git-bars = callPackage ../applications/version-management/git-bars { }; 2178 + 2177 2179 git-branchless = callPackage ../applications/version-management/git-branchless { 2178 2180 inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; 2179 2181 };