tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
atuin: 15.0.0 -> 16.0.0
authored by
happysalada
and committed by
Yt
2 years ago
fd52a5cc
e032f864
+12
-7
1 changed file
expand all
collapse all
unified
split
pkgs
tools
misc
atuin
default.nix
+12
-7
pkgs/tools/misc/atuin/default.nix
···
11
11
12
12
rustPlatform.buildRustPackage rec {
13
13
pname = "atuin";
14
14
-
version = "15.0.0";
14
14
+
version = "16.0.0";
15
15
16
16
src = fetchFromGitHub {
17
17
-
owner = "ellie";
18
18
-
repo = pname;
17
17
+
owner = "atuinsh";
18
18
+
repo = "atuin";
19
19
rev = "v${version}";
20
20
-
hash = "sha256-BX1WpvJMcfpepsRX0U6FJBL5/+mpUyTZxm65BbbZLJA=";
20
20
+
hash = "sha256-Kh6aaWYV+ZG7Asvw5JdGsV+nxD+xvvQab5wLIedcQcQ=";
21
21
};
22
22
23
23
# TODO: unify this to one hash because updater do not support this
24
24
cargoHash =
25
25
if stdenv.isLinux
26
26
-
then "sha256-EnIR+BXw8oYlv3dpYy4gAkN/zckRI8KEAbbR9wPmMq4="
27
27
-
else "sha256-hHcahzrIuXIgOv+sx0HbC9f5guTcTr6L4eeLoiQsAzA=";
26
26
+
then "sha256-Ami88ScGj58jCCat4MMDvjZtV5WglmrlggpQfo+LPjs="
27
27
+
else "sha256-HQMZ9w1C6go16XGrPNniQZliIQ/5yAp2w/uUwAOQTM0=";
28
28
29
29
nativeBuildInputs = [ installShellFiles ];
30
30
···
41
41
inherit (nixosTests) atuin;
42
42
};
43
43
44
44
+
checkFlags = [
45
45
+
# tries to make a network access
46
46
+
"--skip=registration"
47
47
+
];
48
48
+
44
49
meta = with lib; {
45
50
description = "Replacement for a shell history which records additional commands context with optional encrypted synchronization between machines";
46
46
-
homepage = "https://github.com/ellie/atuin";
51
51
+
homepage = "https://github.com/atuinsh/atuin";
47
52
license = licenses.mit;
48
53
maintainers = with maintainers; [ SuperSandro2000 sciencentistguy _0x4A6F ];
49
54
};