Skip to content

Commit 1c47469

Browse files
committed
chore(pkgs): update upstream packages to latest versions
Update packages fetched from upstream repositories: - nomacs: 3.22.0-rc.1 → 3.22.0 (stable release) - LibreScore: 6.0.17 → 6.0.20 - gowa: 7.7.0 → 7.11.1 (includes vendorHash update) - agevault: unstable-2024-11-30 → 1.1.1 (stable tagged release) - get-apple-firmware: update to latest t2linux/wiki commit (0fdb8b37)
1 parent e3e8cf4 commit 1c47469

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

pkgs/custom/agevault/package.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
buildGoModule,
44
fetchFromGitHub,
55
}:
6-
buildGoModule {
6+
buildGoModule rec {
77
pname = "agevault";
8-
version = "unstable-2024-11-30";
8+
version = "1.1.1";
99

1010
src = fetchFromGitHub {
1111
owner = "ndavd";
1212
repo = "agevault";
13-
rev = "main";
14-
hash = "sha256-Rqh/PVWB2qj3PPz+UwIznRrjJw529dpLnTqIOdxvOTU=";
13+
rev = "v${version}";
14+
hash = "sha256-f7t/hzBfZi3OJtYPM4n5bDhm+LcceinDUZIpVsSSl/s=";
1515
};
1616

1717
vendorHash = "sha256-jiSYg4+RLzezW1D1kWxmNoEn0rlbXRzU3BsK16aP0tw=";

pkgs/custom/get-apple-firmware/package.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
}:
66
stdenvNoCC.mkDerivation (final: {
77
pname = "get-apple-firmware";
8-
version = "360156db52c013dbdac0ef9d6e2cebbca46b955b";
8+
version = "0fdb8b37d662eb00c9f0ea8a3a655206a483355c";
99

1010
src = fetchurl {
1111
url = "https://raw.github.com/t2linux/wiki/${final.version}/docs/tools/firmware.sh";
12-
hash = "sha256-IL7omNdXROG402N2K9JfweretTnQujY67wKKC8JgxBo=";
12+
hash = "sha256-uBTrw5Xf8Jh+PBdfiazLMifTeKcvsN1gTAutSUUiUM8=";
1313
};
1414

1515
dontUnpack = true;

pkgs/custom/gowa/package.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@
55
}:
66
buildGoModule rec {
77
pname = "go-whatsapp-web-multidevice";
8-
version = "7.7.0";
8+
version = "7.11.1";
99

1010
src = fetchFromGitHub {
1111
owner = "aldinokemal";
1212
repo = pname;
1313
rev = "v${version}";
14-
hash = "sha256-oVi0ibFEXEALGHk0IONrMSwPFMhFuJ80vSsL3dL1dd0=";
14+
hash = "sha256-/J7sby566iK4DlnddCygSGwYb+bROM84UUNQDKuFpWQ=";
1515
};
1616

1717
sourceRoot = "${src.name}/src";
1818

19-
vendorHash = "sha256-Im+UEV1klTRoQjiWcO8V9XG3zwU/siY0vIKW3Nz+bR0=";
19+
vendorHash = "sha256-O8M2wYqHj3JWNjreMfrytdO3akp+TLnm1GFe/B/YkMg=";
2020

2121
ldflags = ["-s" "-w" "-X github.com/aldinokemal/go-whatsapp-web-multidevice/config.AppVersion=${version}"];
2222

pkgs/darwin/LibreScore-bin/package.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
}:
99
stdenvNoCC.mkDerivation (finalAttrs: {
1010
pname = "LibreScore";
11-
version = "6.0.17";
11+
version = "6.0.20";
1212

1313
src = fetchurl {
1414
url = "https://github.com/LibreScore/app-librescore/releases/download/v${finalAttrs.version}/LibreScore.dmg";
15-
hash = "sha256-sO2uB4imy7AxnPXAI6MwZB06j89RKxYlUJANzP11Ybs=";
15+
hash = "sha256-Jt4GhuAhWJQrQbMEGxGeH8AhIBE6JfdjfhEKTTlFDo8=";
1616
};
1717

1818
nativeBuildInputs = [_7zz makeWrapper];

pkgs/darwin/nomacs-bin/package.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
}:
99
stdenvNoCC.mkDerivation (_finalAttrs: {
1010
pname = "nomacs";
11-
version = "3.22.0-rc.1";
11+
version = "3.22.0";
1212

1313
src = fetchurl {
14-
url = "https://github.com/nomacs/nomacs/releases/download/3.22.0-rc.1/nomacs-3.22.0-32dc6c61-macOS-15.7.1-x86_64-quazip-qt6.zip";
15-
hash = "sha256-IuIs82mBTwJ7Ri39kDvBc7/2KzCAiHe6qLn1E5ugF9w=";
14+
url = "https://github.com/nomacs/nomacs/releases/download/3.22.0/nomacs-3.22.0-macOS-x86_64.zip";
15+
hash = "sha256-iKNLHdkgtdP2bdpGbwVXEvmXtODA7OT7Go/2DWhWGo0=";
1616
};
1717

1818
nativeBuildInputs = [unzip makeWrapper];

0 commit comments

Comments
 (0)