nix-configs/overlays/recyclarr.nix

18 lines
468 B
Nix
Raw Normal View History

2024-08-20 12:18:50 -04:00
{ 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;
};
});
}