Skip to content

Commit 232bc55

Browse files
alacritty: 0.14.0 -> 0.15.0
See https://github.com/alacritty/alacritty/releases/tag/v0.15.0 Update pkgs/by-name/al/alacritty/package.nix Co-authored-by: Sandro <[email protected]>
1 parent f7a9687 commit 232bc55

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

pkgs/by-name/al/alacritty/package.nix

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
wayland,
2323
xdg-utils,
2424

25+
nix-update-script,
2526
}:
2627
let
2728
rpathLibs =
@@ -43,16 +44,16 @@ let
4344
in
4445
rustPlatform.buildRustPackage rec {
4546
pname = "alacritty";
46-
version = "0.14.0";
47+
version = "0.15.0";
4748

4849
src = fetchFromGitHub {
4950
owner = "alacritty";
50-
repo = pname;
51+
repo = "alacritty";
5152
tag = "v${version}";
52-
hash = "sha256-ZhkuuxTx2y8vOfxfpDpJAyNyDdRWab0pqyDdbOCQ2XE=";
53+
hash = "sha256-CAxf0ltvYXYTdjQmLQnRwRRJUBgABbHSB8DxfAbgBdo=";
5354
};
5455

55-
cargoHash = "sha256-T+/G2z7H/egJ/IlP3KA31jydg1CmFdLW8bLYSf/yWck=";
56+
cargoHash = "sha256-pVwPo9O3ortTtVzZn1p1grFGLBA2gVTOatdNFqNQ5zc=";
5657

5758
nativeBuildInputs = [
5859
cmake
@@ -121,7 +122,10 @@ rustPlatform.buildRustPackage rec {
121122

122123
dontPatchELF = true;
123124

124-
passthru.tests.test = nixosTests.terminal-emulators.alacritty;
125+
passthru = {
126+
tests.test = nixosTests.terminal-emulators.alacritty;
127+
updateScript = nix-update-script { };
128+
};
125129

126130
meta = with lib; {
127131
description = "Cross-platform, GPU-accelerated terminal emulator";

0 commit comments

Comments
 (0)