From 49839ec110f823eaacd63bf25291d7e5aa3f303a Mon Sep 17 00:00:00 2001 From: Svenum Date: Tue, 2 Dec 2025 11:01:16 +0100 Subject: [PATCH 1/3] update to 1.1.17rc3 --- README.md | 3 ++- flake.nix | 2 +- packages/solaar/default.nix | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 51b49c6..390fe68 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ See also the [FlakeHub](https://flakehub.com/flake/Svenum/Solaar-Flake) release. |Flake version|Solaar version| |-|-| +|[0.1.5](https://github.com/Svenum/Solaar-Flake/releases/tag/0.1.5)|[1.1.17rc3](https://github.com/pwr-Solaar/Solaar/releases/tag/1.1.17rc3)| |[0.1.4](https://github.com/Svenum/Solaar-Flake/releases/tag/0.1.4)|[1.1.16](https://github.com/pwr-Solaar/Solaar/releases/tag/1.1.16)| |[0.1.3](https://github.com/Svenum/Solaar-Flake/releases/tag/0.1.3)|[1.1.15](https://github.com/pwr-Solaar/Solaar/releases/tag/1.1.15)| |[0.1.3-rc.1](https://github.com/Svenum/Solaar-Flake/releases/tag/0.1.3-rc.1)|[1.1.15rc2](https://github.com/pwr-Solaar/Solaar/releases/tag/1.1.15rc2)| @@ -23,7 +24,7 @@ Import ```nix { inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11"; solaar = { url = "https://flakehub.com/f/Svenum/Solaar-Flake/*.tar.gz"; # For latest stable version #url = "https://flakehub.com/f/Svenum/Solaar-Flake/0.1.3.tar.gz"; # uncomment line for solaar version 1.1.15 diff --git a/flake.nix b/flake.nix index 2c9df96..76e9187 100644 --- a/flake.nix +++ b/flake.nix @@ -2,7 +2,7 @@ description = "Solaar is an Open Source Logitech Driver for Linux"; inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11"; snowfall-lib = { url = "github:snowfallorg/lib?ref=v3.0.3"; diff --git a/packages/solaar/default.nix b/packages/solaar/default.nix index 3d8bc10..8f940ea 100644 --- a/packages/solaar/default.nix +++ b/packages/solaar/default.nix @@ -17,7 +17,7 @@ }: let - release = "1.1.16"; + release = "1.1.17rc3"; in python3Packages.buildPythonApplication rec{ pname = "solaar-flake"; @@ -25,7 +25,7 @@ python3Packages.buildPythonApplication rec{ src = fetchurl { url = "https://github.com/pwr-Solaar/Solaar/archive/refs/tags/${release}.tar.gz"; - hash = "sha256-Iky0j4Nw1HfmDJbFybb0XKvp8WVbYpr2YaA3eBTz1wM="; + hash = "sha256-B1/ncq9qZQD4+gNYoinJEojzS7k4tL4UCONvoajEhAY="; }; outputs = [ "out" "udev" ]; From c246135e1a921fe5f0ced2aa59026d120338e5e1 Mon Sep 17 00:00:00 2001 From: Svenum Date: Tue, 2 Dec 2025 11:06:18 +0100 Subject: [PATCH 2/3] update to 1.1.17rc3 --- flake.lock | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/flake.lock b/flake.lock index 3332fe1..59025ad 100644 --- a/flake.lock +++ b/flake.lock @@ -3,11 +3,11 @@ "flake-compat": { "flake": false, "locked": { - "lastModified": 1747046372, - "narHash": "sha256-CIVLLkVgvHYbgI2UpXvIIBJ12HWgX+fjA8Xf8PUmqCY=", + "lastModified": 1761588595, + "narHash": "sha256-XKUZz9zewJNUj46b4AJdiRZJAvSZ0Dqj2BNfXvFlJC4=", "owner": "edolstra", "repo": "flake-compat", - "rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885", + "rev": "f387cd2afec9419c8ee37694406ca490c3f34ee5", "type": "github" }, "original": { @@ -71,16 +71,16 @@ }, "nixpkgs": { "locked": { - "lastModified": 1759994382, - "narHash": "sha256-wSK+3UkalDZRVHGCRikZ//CyZUJWDJkBDTQX1+G77Ow=", + "lastModified": 1764522689, + "narHash": "sha256-SqUuBFjhl/kpDiVaKLQBoD8TLD+/cTUzzgVFoaHrkqY=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "5da4a26309e796daa7ffca72df93dbe53b8164c7", + "rev": "8bb5646e0bed5dbd3ab08c7a7cc15b75ab4e1d0f", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixos-25.05", + "ref": "nixos-25.11", "repo": "nixpkgs", "type": "github" } From 49f5ced735bead27782a47923793dc18097c205b Mon Sep 17 00:00:00 2001 From: Svenum Date: Tue, 2 Dec 2025 11:10:27 +0100 Subject: [PATCH 3/3] update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 390fe68..bbc1e81 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ See also the [FlakeHub](https://flakehub.com/flake/Svenum/Solaar-Flake) release. |Flake version|Solaar version| |-|-| -|[0.1.5](https://github.com/Svenum/Solaar-Flake/releases/tag/0.1.5)|[1.1.17rc3](https://github.com/pwr-Solaar/Solaar/releases/tag/1.1.17rc3)| +|[0.1.5-rc.1](https://github.com/Svenum/Solaar-Flake/releases/tag/0.1.5-rc.1)|[1.1.17rc3](https://github.com/pwr-Solaar/Solaar/releases/tag/1.1.17rc3)| |[0.1.4](https://github.com/Svenum/Solaar-Flake/releases/tag/0.1.4)|[1.1.16](https://github.com/pwr-Solaar/Solaar/releases/tag/1.1.16)| |[0.1.3](https://github.com/Svenum/Solaar-Flake/releases/tag/0.1.3)|[1.1.15](https://github.com/pwr-Solaar/Solaar/releases/tag/1.1.15)| |[0.1.3-rc.1](https://github.com/Svenum/Solaar-Flake/releases/tag/0.1.3-rc.1)|[1.1.15rc2](https://github.com/pwr-Solaar/Solaar/releases/tag/1.1.15rc2)|