From 9133914fef50216f51c588616226b0ee448f0762 Mon Sep 17 00:00:00 2001 From: Saterfield990 Date: Mon, 14 Jul 2025 14:30:23 +0300 Subject: [PATCH] redlib: 0.36.0 -> 0.36.0-unstable-2025-07-21; use rev instead of tag for unstable updates --- pkgs/by-name/re/redlib/package.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/re/redlib/package.nix b/pkgs/by-name/re/redlib/package.nix index 4a7f5b95ad57..c37318757147 100644 --- a/pkgs/by-name/re/redlib/package.nix +++ b/pkgs/by-name/re/redlib/package.nix @@ -6,18 +6,19 @@ fetchFromGitHub, nix-update-script, }: -rustPlatform.buildRustPackage rec { + +rustPlatform.buildRustPackage { pname = "redlib"; - version = "0.36.0"; + version = "0.36.0-unstable-2025-07-21"; src = fetchFromGitHub { owner = "redlib-org"; repo = "redlib"; - tag = "v${version}"; - hash = "sha256-a+FFQqKXYws8b/iGr49eZMVmKBqacQGvW8P51ybtBSc="; + rev = "3e67694e2b9a4012b259264af5f2b81807dbadf0"; + hash = "sha256-vFK9DiVANbTKi19DCWdRG8gKKwcyoAcLa1teXCZ9nfE="; }; - cargoHash = "sha256-1zPLnkNZvuZS5z9AEJvhyIv+8/y+YhqFcj5Mu7RSqnE="; + cargoHash = "sha256-FDeENHY6bwwCq6leSoIuCqPI6PCHpEod7KN2grS2gFw="; postInstall = '' install -D contrib/redlib.service $out/lib/systemd/system/redlib.service @@ -67,7 +68,6 @@ rustPlatform.buildRustPackage rec { }; meta = { - changelog = "https://github.com/redlib-org/redlib/releases/tag/v${version}"; description = "Private front-end for Reddit (Continued fork of Libreddit)"; homepage = "https://github.com/redlib-org/redlib"; license = lib.licenses.agpl3Only;