gitAndTools.pass-git-helper: init at 0.4 (#47056)
This commit is contained in:
parent
24c31d43bb
commit
82f2ae0260
@ -115,6 +115,8 @@ let
|
|||||||
|
|
||||||
pre-commit = callPackage ./pre-commit { };
|
pre-commit = callPackage ./pre-commit { };
|
||||||
|
|
||||||
|
pass-git-helper = python3Packages.callPackage ./pass-git-helper { };
|
||||||
|
|
||||||
qgit = qt5.callPackage ./qgit { };
|
qgit = qt5.callPackage ./qgit { };
|
||||||
|
|
||||||
stgit = callPackage ./stgit {
|
stgit = callPackage ./stgit {
|
||||||
|
@ -0,0 +1,22 @@
|
|||||||
|
{ stdenv, buildPythonApplication, fetchFromGitHub, pyxdg }:
|
||||||
|
|
||||||
|
buildPythonApplication rec {
|
||||||
|
pname = "pass-git-helper";
|
||||||
|
version = "0.4";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "languitar";
|
||||||
|
repo = "pass-git-helper";
|
||||||
|
rev = "${version}";
|
||||||
|
sha256 = "1zccbmq5l6asl9qm1f90vg9467y3spmv3ayrw07qizrj43yfd9ap";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ pyxdg ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/languitar/pass-git-helper";
|
||||||
|
description = "A git credential helper interfacing with pass, the standard unix password manager";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ vanzef ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user