tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gitless: 0.8.8 -> 0.9.17
fixes #249543
Jez Cope
2 years ago
51f2cfd3
2c5cd544
+5
-6
1 changed file
expand all
collapse all
unified
split
pkgs
applications
version-management
gitless
default.nix
+5
-6
pkgs/applications/version-management/gitless/default.nix
···
5
5
6
6
python3.pkgs.buildPythonApplication rec {
7
7
pname = "gitless";
8
8
-
version = "0.8.8";
8
8
+
version = "0.9.17";
9
9
format = "setuptools";
10
10
11
11
src = fetchFromGitHub {
12
12
-
owner = "gitless-vcs";
12
12
+
owner = "goldstar611";
13
13
repo = pname;
14
14
-
rev = "v${version}";
15
15
-
hash = "sha256-xo5EWtP2aN8YzP8ro3bnxZwUGUp0PHD0g8hk+Y+gExE=";
14
14
+
rev = version;
15
15
+
hash = "sha256-XDB1i2b1reMCM6i1uK3IzTnsoLXO7jldYtNlYUo1AoQ=";
16
16
};
17
17
18
18
nativeBuildInputs = [ python3.pkgs.pythonRelaxDepsHook ];
19
19
20
20
propagatedBuildInputs = with python3.pkgs; [
21
21
-
sh
22
21
pygit2
23
23
-
clint
22
22
+
argcomplete
24
23
];
25
24
26
25
pythonRelaxDeps = [ "pygit2" ];