tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pass-git-helper: 1.1.1 -> 1.1.2
Henri Menke
4 years ago
65605178
687ed904
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
applications
version-management
git-and-tools
pass-git-helper
default.nix
+3
-3
pkgs/applications/version-management/git-and-tools/pass-git-helper/default.nix
···
2
2
3
3
buildPythonApplication rec {
4
4
pname = "pass-git-helper";
5
5
-
version = "1.1.1";
5
5
+
version = "1.1.2";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "languitar";
9
9
repo = "pass-git-helper";
10
10
rev = "v${version}";
11
11
-
sha256 = "sha256-GdsFPpBdoEaOCmdKxw5xTuFOcGFH94w5q/lV891lCUs=";
11
11
+
sha256 = "sha256-HEdOR6jS16c4UIatlgB6HeBtyyxePSab+6e2hu85dsI=";
12
12
};
13
13
14
14
propagatedBuildInputs = [ pyxdg ];
···
21
21
homepage = "https://github.com/languitar/pass-git-helper";
22
22
description = "A git credential helper interfacing with pass, the standard unix password manager";
23
23
license = licenses.gpl3Plus;
24
24
-
maintainers = with maintainers; [ vanzef ];
24
24
+
maintainers = with maintainers; [ hmenke vanzef ];
25
25
};
26
26
}