recyclarr overlay

This commit is contained in:
Chris Dombroski 2024-08-20 12:18:50 -04:00
parent d21fb10f14
commit b94eb3c95b

17
overlays/recyclarr.nix Normal file
View file

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