Merge pull request #75129 from ryneeverett/legit-init
legit: init at 1.2.0
This commit is contained in:
commit
24ead6996c
@ -179,6 +179,8 @@ let
|
||||
|
||||
lefthook = callPackage ./lefthook { };
|
||||
|
||||
legit = callPackage ./legit { };
|
||||
|
||||
pass-git-helper = python3Packages.callPackage ./pass-git-helper { };
|
||||
|
||||
pre-commit = pkgs.python3Packages.toPythonApplication pkgs.python3Packages.pre-commit;
|
||||
|
@ -0,0 +1,30 @@
|
||||
{ lib, python3Packages }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "legit";
|
||||
version = "1.2.0";
|
||||
src = python3Packages.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0ngh3ar6v15516f52j21k6qz7hykmxfjadhb2rakvl27b5xvjy1c";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
click
|
||||
clint
|
||||
crayons
|
||||
GitPython
|
||||
six
|
||||
];
|
||||
|
||||
# Prevent tests from trying to create configuration in /homeless-shelter.
|
||||
preCheck = ''
|
||||
export HOME=$PWD/test-home
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/frostming/legit";
|
||||
description = "Git for Humans, Inspired by GitHub for Mac";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ ryneeverett ];
|
||||
};
|
||||
}
|
@ -20296,6 +20296,8 @@ in
|
||||
|
||||
lemonbar-xft = callPackage ../applications/window-managers/lemonbar/xft.nix { };
|
||||
|
||||
legit = gitAndTools.legit;
|
||||
|
||||
leo-editor = callPackage ../applications/editors/leo-editor { };
|
||||
|
||||
libowfat = callPackage ../development/libraries/libowfat { };
|
||||
|
Loading…
Reference in New Issue
Block a user