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; + }; + }); + }