mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
gitAndTools.pass-git-helper: init at 0.4 (#47056)
This commit is contained in:
parent
24c31d43bb
commit
82f2ae0260
2 changed files with 24 additions and 0 deletions
|
@ -115,6 +115,8 @@ let
|
|||
|
||||
pre-commit = callPackage ./pre-commit { };
|
||||
|
||||
pass-git-helper = python3Packages.callPackage ./pass-git-helper { };
|
||||
|
||||
qgit = qt5.callPackage ./qgit { };
|
||||
|
||||
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…
Reference in a new issue