tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Merge #247761: mercurial: 6.5 -> 6.5.1
...into staging
Vladimír Čunát
2 years ago
d4650637
92dff845
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
applications
version-management
mercurial
default.nix
+3
-3
pkgs/applications/version-management/mercurial/default.nix
···
21
21
22
22
self = python3Packages.buildPythonApplication rec {
23
23
pname = "mercurial${lib.optionalString fullBuild "-full"}";
24
24
-
version = "6.5";
24
24
+
version = "6.5.1";
25
25
26
26
src = fetchurl {
27
27
url = "https://mercurial-scm.org/release/mercurial-${version}.tar.gz";
28
28
-
sha256 = "sha256-pWA9DTlev2f+XSeruzvTf8wBhx7POUx5NnLSweaL5+c=";
28
28
+
sha256 = "sha256-M/fejYs2B/orQIzeS4cl4RfrCtQZJqeH6qtAnKik/C8=";
29
29
};
30
30
31
31
format = "other";
···
35
35
cargoDeps = if rustSupport then rustPlatform.fetchCargoTarball {
36
36
inherit src;
37
37
name = "mercurial-${version}";
38
38
-
sha256 = "sha256-umjOU3OmTdPmLS4IWncqmKxSa6J4KXwTlGhylFt6TQo=";
38
38
+
sha256 = "sha256-tPv0UeZOsHDGKzXWeA/fFio7d3EN+KGioDu/1WH1drc=";
39
39
sourceRoot = "mercurial-${version}/rust";
40
40
} else null;
41
41
cargoRoot = if rustSupport then "rust" else null;