Skip to content

Commit

Permalink
pass-git-helper: init at 0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
vanzef committed Sep 22, 2018
1 parent 218ce4d commit 3c08fd0
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ let

pre-commit = callPackage ./pre-commit { };

pass-git-helper = python3Packages.callPackage ./pass-git-helper { };

qgit = qt5.callPackage ./qgit { };

stgit = callPackage ./stgit {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ stdenv, buildPythonApplication, isPy3k, fetchFromGitHub, pyxdg }:

buildPythonApplication rec {
pname = "pass-git-helper";
version = "0.4";

disabled = !isPy3k;

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 ];
};
}

0 comments on commit 3c08fd0

Please sign in to comment.