gurk-rs: 0.6.4 -> 0.8.0 (#474301)

This commit is contained in:
Sandro
2026-01-07 20:28:26 +00:00
committed by GitHub
2 changed files with 9 additions and 4 deletions
+2
View File
@@ -57,6 +57,8 @@
- `n8n` has been updated to version 2. You can find the breaking changes here: https://docs.n8n.io/2-0-breaking-changes/.
- `gurk-rs` has been updated from `0.6.4` to `0.8.0`. Version `0.8.0` includes breaking changes. For more information read the [release notes for 0.8.0](https://github.com/boxdot/gurk-rs/releases/tag/v0.8.0).
- `iroh` has been removed and split up into `iroh-dns-server` and `iroh-relay`.
- `python3Packages.pygame` has been been renamed to `python3Packages.pygame-original`, the attribute `python3Packages.pygame` will from python 3.14 default to the more actively maintained `python3Packages.pygame-ce`
+7 -4
View File
@@ -14,20 +14,20 @@
rustPlatform.buildRustPackage (finalAttrs: {
pname = "gurk-rs";
version = "0.6.4";
version = "0.8.0";
src = fetchFromGitHub {
owner = "boxdot";
repo = "gurk-rs";
tag = "v${finalAttrs.version}";
hash = "sha256-1vnyzKissOciLopWzWN2kmraFevYW/w32KVmP8qgUM4=";
hash = "sha256-m7oZM2uCGENrADh+qrNODvYWxgbh1ahthkWjFnAVXjw=";
};
postPatch = ''
rm .cargo/config.toml
'';
cargoHash = "sha256-PCeiJYeIeMgKoQYiDI6DPwNgJcSxw4gw6Ra1YmqsNys=";
cargoHash = "sha256-15z4jKKGfSH1LXX1cXpwRjWI/ITaj3dzlscE7Vrh9Xw=";
nativeBuildInputs = [
protobuf
@@ -58,6 +58,9 @@ rustPlatform.buildRustPackage (finalAttrs: {
mainProgram = "gurk";
homepage = "https://github.com/boxdot/gurk-rs";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ devhell ];
maintainers = with lib.maintainers; [
devhell
mattkang
];
};
})