From b94eb3c95b8e1080e57d0bb63111a2cf1d0fc110 Mon Sep 17 00:00:00 2001 From: Chris Dombroski Date: Tue, 20 Aug 2024 12:18:50 -0400 Subject: [PATCH] recyclarr overlay --- overlays/recyclarr.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 overlays/recyclarr.nix diff --git a/overlays/recyclarr.nix b/overlays/recyclarr.nix new file mode 100644 index 0000000..ee8c3f7 --- /dev/null +++ b/overlays/recyclarr.nix @@ -0,0 +1,17 @@ +{ config, pkgs, fetchurl, ...}: +self: super: +let + os = "linux"; + arch = "x64"; +in + { + recyclarr = super.recyclarr.overrideAttrs (old: rec { + version = "7.2.1"; + name = "recyclarr-${version}"; + hash = "sha256:04vg1s86krg7baifcpnqr5zg6jd6nfw0jhjsq09zzpxwg5skxlf7"; + src = fetchurl { + url = "https://github.com/recyclarr/recyclarr/releases/download/v${version}/recyclarr-${os}-${arch}.tar.xz"; + inherit hash; + }; + }); + }